c# - How to detect plus key in wpf? -


i know can use below code determine enter key in keyboard

if (e.key == key.return) {     // } 

but want know code "+" , "-" ?

can me please.

there 2 sets. 1 in keyboard side , other in keypad side.

for keboard use key.oemplus , key.oemminus , keypad 1 use key.add , key.subtract.


Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -