vote up 2 vote down star

I've tried to override WndProc, but no message show up on paste event.

Then I tried to create custom filter and using method PreFilterMessage I was able to catch message with value 257 (KEYUP event), but that's not enough...

flag
Hm... could you not use my username? :) – Goran Oct 6 '08 at 8:52

3 Answers

vote up 5 vote down

Use:

 protected override void OnKeyDown(KeyEventArgs e)
 {
      if (e.KeyCode == Keys.V && e.Modifiers == Keys.Control)
      {
            MessageBox.Show("Hello world");
      }
      base.OnKeyDown(e);
  }

Make sure your form KeyPreview = true.

link|flag
FYI - Thats not me asking the question – Goran Oct 6 '08 at 8:55
what about right-click -> paste ? – Haoest Oct 6 '08 at 17:56
First you'd need to implement such feature (using context menu strip i guess). You'd have full control over it anyway – Goran Oct 6 '08 at 18:13
vote up 1 vote down

You can do this by:

  • Intercepting the Ctrl+V in KeyDown (or KeyUp) of your form
  • Creating a menu in your form that contains a Paste option that has the Ctrl+V shortcut (this would maybe be better since you will have users looking for the options)
  • Intercepting the KEYDOWN message like you described in the question and checking whether Ctrl is pressed at that time (I think this is the hardest of all 3).

Personally I would go for using a menu option.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.