MouseEventArgs.MouseDevice Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the mouse device associated with this event.
public:
property System::Windows::Input::MouseDevice ^ MouseDevice { System::Windows::Input::MouseDevice ^ get(); };
public System.Windows.Input.MouseDevice MouseDevice { get; }
member this.MouseDevice : System.Windows.Input.MouseDevice
Public ReadOnly Property MouseDevice As MouseDevice
Property Value
The mouse device associated with this event. There is no default value.
Examples
The following example gets the MouseDevice associated with an input event.
MouseDevice mouseDevice = e.MouseDevice;
Dim mouseDevice As MouseDevice = e.MouseDevice
Remarks
The Mouse class provides additional properties and methods for determining the state of the mouse.
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.