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

gcc - MinGW's ld cannot perform PE operations on non PE output file -

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

c# - Search and Add Comment with OpenXML for Word -