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