WorkflowDesignerMessageFilter.OnMouseDoubleClick(MouseEventArgs) Method

Definition

Occurs when you double-click the mouse.

protected:
 virtual bool OnMouseDoubleClick(System::Windows::Forms::MouseEventArgs ^ eventArgs);
protected virtual bool OnMouseDoubleClick (System.Windows.Forms.MouseEventArgs eventArgs);
abstract member OnMouseDoubleClick : System.Windows.Forms.MouseEventArgs -> bool
override this.OnMouseDoubleClick : System.Windows.Forms.MouseEventArgs -> bool
Protected Overridable Function OnMouseDoubleClick (eventArgs As MouseEventArgs) As Boolean

Parameters

eventArgs
MouseEventArgs

A MouseEventArgs that contains information about the event.

Returns

true if the message is handled; otherwise, false.

Examples

The following code example shows how to override the OnMouseDoubleClick method to return false so that other components in the designer architecture can process the method.

This code example is part of the Basic Designer Hosting SDK Sample from the DesignerShell.cs file. For more information, see Basic Designer Hosting.

protected override bool OnMouseDoubleClick(MouseEventArgs eventArgs)
{
    mouseDown = false;
    return true;
}
Protected Overrides Function OnMouseDoubleClick(ByVal eventArgs As MouseEventArgs) As Boolean
    mouseDown = False
    Return True
End Function

Remarks

OnMouseDoubleClick occurs when you double-click the mouse. The double-click is determined by the mouse settings of the operating system. You can set the time between clicks of a mouse button that is considered a double-click rather than two clicks.

Applies to