Namespace TallComponents.Interaction.WPF.Events
Class KeyboardEventArgs
This event is raised when the user enters text on the keyboard. In contrast to WinForms, ReaderControls will not generate both KeyPress and KeyDown events. Instead it will just generate a KeyDown event when the user presses a key, and a KeyUp event when the user releases the key. If the user holds a key, a number of KeyDown events will be generated. The ReaderControls KeyDown event specifies both the key's unicode character and its low level key data and modifiers. In addition, it specifies a culture-specific string representation.
Syntax
public class KeyboardEventArgs : KeyEventArgs
Properties
Char Char
The unicode character of the key. This may differ from its
culture-specific string representation.
String String
A string representation of the character that was entered. This will
take into account the current locale settings. The numeric keypad dot may
have different string representations for example.