System.Windows.Forms
2.0.0.0
System.Windows.Forms.MouseEventArgs
You will want to use primarily when developing a control that needs to handle mouse wheel events itself, and prevent them from being seen by the control's immediate parent container. is not passed directly by when it handles the event. Rather, uses a , which you must cast to a in order to cancel an occurrence of .
Allows a custom control to prevent the event from being sent to its parent container.
Constructor
To be added.
Initializes a new instance of the class with the specified mouse button, number of mouse button clicks, horizontal and vertical screen coordinates, and the change of mouse pointer position.
One of the values indicating which mouse button was pressed.
The number of times a mouse button was pressed.
The x-coordinate of a mouse click, in pixels.
The y-coordinate of a mouse click, in pixels.
A signed count of the number of detents the wheel has rotated.
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class with the specified mouse button, number of mouse button clicks, horizontal and vertical screen coordinates, the change of mouse pointer position, and the value indicating whether the event is handled.
One of the values indicating which mouse button was pressed.
The number of times a mouse button was pressed.
The x-coordinate of a mouse click, in pixels.
The y-coordinate of a mouse click, in pixels.
A signed count of the number of detents the wheel has rotated.
true if the event is handled; otherwise, false.
2.0.0.0
Property
System.Boolean
To be added.
To be added.
Gets or sets whether this event should be forwarded to the control's parent container.
2.0.0.0