Delegate MouseEventHandler
Represents the method that will handle mouse related routed events that do not specifically involve mouse buttons; for example, System.Windows.UIElement.MouseMove.
Namespace: System.Windows.Input
Assembly: OpenSilver.dll
Syntax
public delegate void MouseEventHandler(object sender, MouseEventArgs e);
Parameters
Type | Name | Description |
---|---|---|
System.Object | sender | The object where the event handler is attached. |
MouseEventArgs | e | The event data. |