Interface IKeyUpdateContext
Holds information about the state of the keyboard when updating the individual key view models.
Namespace: Telerik.Windows.Controls.VirtualKeyboard
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public interface IKeyUpdateContext
Properties
InvalidateCulture
Gets or sets whether the culture dependent information of keys should be retrieved anew.
Declaration
bool InvalidateCulture { get; set; }
Property Value
System.Boolean
|
IsAltActive
Gets or sets whether an Alt key is toggled.
Declaration
bool IsAltActive { get; set; }
Property Value
System.Boolean
|
IsCapsLockActive
Gets or sets whether the Caps Lock key is toggled.
Declaration
bool IsCapsLockActive { get; set; }
Property Value
System.Boolean
|
IsControlActive
Gets or sets whether a Control key is toggled.
Declaration
bool IsControlActive { get; set; }
Property Value
System.Boolean
|
IsNumLockActive
Gets or sets whether the Num Lock key is toggled.
Declaration
bool IsNumLockActive { get; set; }
Property Value
System.Boolean
|
IsScrollLockActive
Gets or sets whether the Scroll Lock key is toggled.
Declaration
bool IsScrollLockActive { get; set; }
Property Value
System.Boolean
|
IsShiftActive
Gets or sets whether a Shift key is toggled.
Declaration
bool IsShiftActive { get; set; }
Property Value
System.Boolean
|
IsWindowsActive
Gets or sets whether a Windows key is toggled.
Declaration
bool IsWindowsActive { get; set; }
Property Value
System.Boolean
|
ModifierKeys
Gets the state of the Alt, Control, Shift, and Windows keys.
Declaration
ModifierKeys ModifierKeys { get; }
Property Value
System.Windows.Input.ModifierKeys
|