1 type derived from KeyboardDevice
PresentationCore (1)
System\Windows\Input\Win32KeyboardDevice.cs (1)
12
internal sealed class Win32KeyboardDevice :
KeyboardDevice
27 references to KeyboardDevice
PresentationCore (16)
System\Windows\Input\AccessKeyManager.cs (2)
303
KeyboardDevice
keyboard = (
KeyboardDevice
)e.Device;
System\Windows\Input\FocusChangedEventArgs.cs (1)
26
public KeyboardFocusChangedEventArgs(
KeyboardDevice
keyboard, int timestamp, IInputElement oldFocus, IInputElement newFocus) : base(keyboard, timestamp)
System\Windows\Input\InputManager.cs (2)
267
public
KeyboardDevice
PrimaryKeyboardDevice
939
private
KeyboardDevice
_primaryKeyboardDevice;
System\Windows\Input\Keyboard.cs (2)
358
public static
KeyboardDevice
PrimaryDevice
362
KeyboardDevice
keyboardDevice = InputManager.UnsecureCurrent.PrimaryKeyboardDevice;
System\Windows\Input\KeyboardDevice.cs (3)
162
keyboardInputProvider = (IKeyboardInputProvider)source.GetInputProvider(typeof(
KeyboardDevice
));
613
IKeyboardInputProvider keyboardProvider = presentationSource.GetInputProvider(typeof(
KeyboardDevice
)) as IKeyboardInputProvider;
701
IKeyboardInputProvider toDeactivate = _activeSource.GetInputProvider(typeof(
KeyboardDevice
)) as IKeyboardInputProvider;
System\Windows\Input\KeyboardEventArgs.cs (3)
22
public KeyboardEventArgs(
KeyboardDevice
keyboard, int timestamp) : base(keyboard, timestamp)
30
public
KeyboardDevice
KeyboardDevice
32
get {return (
KeyboardDevice
) this.Device;}
System\Windows\Input\KeyboardInputProviderAcquireFocusEventArgs.cs (1)
25
public KeyboardInputProviderAcquireFocusEventArgs(
KeyboardDevice
keyboard, int timestamp, bool focusAcquired) : base(keyboard, timestamp)
System\Windows\Input\KeyEventArgs.cs (1)
27
public KeyEventArgs(
KeyboardDevice
keyboard, PresentationSource inputSource, int timestamp, Key key) : base(keyboard, timestamp)
System\Windows\InterOp\HwndSource.cs (1)
407
if (inputDevice == typeof(
KeyboardDevice
))
PresentationFramework (10)
System\Windows\Controls\ComboBox.cs (1)
1095
if ((IsEditable || (!IsDropDownOpen)) && itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
System\Windows\Controls\DataGrid.cs (1)
5461
if (itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
System\Windows\Controls\ItemsControl.cs (1)
3243
if (itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
System\Windows\Controls\Menu.cs (1)
287
if (itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
System\windows\Documents\TextEditorTyping.cs (2)
394
KeyboardDevice
keyboard = e.Device as
KeyboardDevice
;
System\Windows\Input\KeyboardNavigation.cs (1)
811
return InputManager.Current.MostRecentInputDevice is
KeyboardDevice
;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
438
case 345: t = () => typeof(
KeyboardDevice
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6650
typeof(System.Windows.Input.
KeyboardDevice
),
System\Windows\Markup\KnownTypes.cs (1)
5892
case KnownElements.KeyboardDevice: t = typeof(System.Windows.Input.
KeyboardDevice
); break;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonHelper.cs (1)
475
return (InputManager.Current.MostRecentInputDevice is
KeyboardDevice
);