| File: System\Windows\Input\InputDevice.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Windows.Threading; namespace System.Windows.Input { /// <summary> /// Provides the base class for all input devices. /// </summary> public abstract class InputDevice : DispatcherObject { /// <summary> /// Constructs an instance of the InputDevice class. /// </summary> protected InputDevice() { // Only we can create these. // But perhaps HID devices can create these too? } /// <summary> /// Returns the element that input from this device is sent to. /// </summary> public abstract IInputElement Target{get;} /// <summary> /// Returns the PresentationSource that is reporting input for this device. /// </summary> public abstract PresentationSource ActiveSource { get; } } }