ToolStripItem.OnMouseUp(MouseEventArgs) Method
Definition
Raises the MouseUp event.
protected:
virtual void OnMouseUp(System::Windows::Forms::MouseEventArgs ^ e);
protected virtual void OnMouseUp (System.Windows.Forms.MouseEventArgs e);
abstract member OnMouseUp : System.Windows.Forms.MouseEventArgs -> unit
override this.OnMouseUp : System.Windows.Forms.MouseEventArgs -> unit
Protected Overridable Sub OnMouseUp (e As MouseEventArgs)
Parameters
A MouseEventArgs that contains the event data.
Remarks
Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.
The OnMouseUp method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors
When overriding OnMouseUp(MouseEventArgs) in a derived class, be sure to call the base class's OnMouseUp(MouseEventArgs) method so that registered delegates receive the event.