views:

838

answers:

1

What's the better way to handle the ctrl + mouse wheel in C#? I've figured out how to handle the MouseWheel event but how to know that the ctrl key is being pressed too?

Thanks in advance.

+8  A: 

Use the static property "System.Windows.Forms.Control.ModifierKeys".

TcKs
It's worked. Thanks!=)
Adones Cunha