I want to determine the symbol that user entered by keypad. For example in Windows Forms KeyPressEventArgs has KeyChar property, but there is no this property for KeyEventArgs
You can use the Key property from the event args:
if(e.Key == Key.Enter) { }