Represents the method that will handle the events of the Mouse class.
| C# | Visual Basic | Visual C++ |
public delegate void MouseEventHandler( Object sender, MouseEventArgs e )
Public Delegate Sub MouseEventHandler ( _ sender As Object, _ e As MouseEventArgs _ )
public delegate void MouseEventHandler( Object^ sender, MouseEventArgs^ e )
- sender (Object)
- The source of the event.
- e (MouseEventArgs)
- A MouseEventArgs that contains the event data.
