1 type derived from KeyboardDevice
PresentationCore (1)
Core\CSharp\System\Windows\Input\Win32KeyboardDevice.cs (1)
21
internal sealed class Win32KeyboardDevice :
KeyboardDevice
26 references to KeyboardDevice
PresentationCore (16)
Core\CSharp\System\Windows\Input\AccessKeyManager.cs (2)
366
KeyboardDevice
keyboard = (
KeyboardDevice
)e.Device;
Core\CSharp\System\Windows\Input\FocusChangedEventArgs.cs (1)
29
public KeyboardFocusChangedEventArgs(
KeyboardDevice
keyboard, int timestamp, IInputElement oldFocus, IInputElement newFocus) : base(keyboard, timestamp)
Core\CSharp\System\Windows\Input\InputManager.cs (2)
423
public
KeyboardDevice
PrimaryKeyboardDevice
1184
private
KeyboardDevice
_primaryKeyboardDevice;
Core\CSharp\System\Windows\Input\Keyboard.cs (2)
368
public static
KeyboardDevice
PrimaryDevice
373
KeyboardDevice
keyboardDevice = InputManager.UnsecureCurrent.PrimaryKeyboardDevice;
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (3)
215
keyboardInputProvider = (IKeyboardInputProvider)source.GetInputProvider(typeof(
KeyboardDevice
));
693
IKeyboardInputProvider keyboardProvider = presentationSource.GetInputProvider(typeof(
KeyboardDevice
)) as IKeyboardInputProvider;
792
IKeyboardInputProvider toDeactivate = _activeSource.Value.GetInputProvider(typeof(
KeyboardDevice
)) as IKeyboardInputProvider;
Core\CSharp\System\Windows\Input\KeyboardEventArgs.cs (3)
21
public KeyboardEventArgs(
KeyboardDevice
keyboard, int timestamp) : base(keyboard, timestamp)
29
public
KeyboardDevice
KeyboardDevice
31
get {return (
KeyboardDevice
) this.Device;}
Core\CSharp\System\Windows\Input\KeyboardInputProviderAcquireFocusEventArgs.cs (1)
24
public KeyboardInputProviderAcquireFocusEventArgs(
KeyboardDevice
keyboard, int timestamp, bool focusAcquired) : base(keyboard, timestamp)
Core\CSharp\System\Windows\Input\KeyEventArgs.cs (1)
34
public KeyEventArgs(
KeyboardDevice
keyboard, PresentationSource inputSource, int timestamp, Key key) : base(keyboard, timestamp)
Core\CSharp\System\Windows\Interop\HwndSource.cs (1)
480
if (inputDevice == typeof(
KeyboardDevice
))
PresentationFramework (10)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
1112
if ((IsEditable || (!IsDropDownOpen)) && itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
src\Framework\System\Windows\Controls\DataGrid.cs (1)
5508
if (itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
src\Framework\System\Windows\Controls\ItemsControl.cs (1)
3214
if (itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
src\Framework\System\Windows\Controls\Menu.cs (1)
319
if (itemNavigateArgs.DeviceUsed is
KeyboardDevice
)
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
415
KeyboardDevice
keyboard = e.Device as
KeyboardDevice
;
src\Framework\System\Windows\Input\KeyboardNavigation.cs (1)
875
return InputManager.Current.MostRecentInputDevice is
KeyboardDevice
;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
437
case 345: t = () => typeof(
KeyboardDevice
); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6075
typeof(System.Windows.Input.
KeyboardDevice
),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5889
case KnownElements.KeyboardDevice: t = typeof(System.Windows.Input.
KeyboardDevice
); break;