c# - How to assign Control + . as a shortcut key? -


i want catch keys in winform keydown event , set control + . shortcut key.

but can't find . (dot) key in keys list.

private void frmmain_keydown(object sender, keyeventargs e)    {      if (e.control && e.keycode == keys.dotkey) //what dot key         //do somthing    } 

keys.decimal on layout , keys.oemperiod on german layout you're looking for.


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -