tags:

views:

57

answers:

2

I can't seem to find them here.

I'm trying to get them include in my hotkey selection dialog.

+2  A: 

Would OemMinus and OemPlus work for you?

Tim S. Van Haren
yes, these enums work.
sjlewis
+5  A: 

Checkout Oem*, from the link that you provided:

OemMinus    The OEM minus key on any country/region keyboard (Windows 2000 or later). 
Oemplus     The OEM plus key on any country/region keyboard (Windows 2000 or later). 

You can have something like:

if (keyData == (Keys.Control | Keys.OemMinus) ) ZoomOutOrSomething();//
KMan