VitNX_DockGroup.OnMouseUp Method

Raises the MouseUp event.
protected override void OnMouseUp( 
MouseEventArgs e 
)
This language is not supported or no code example is available.

Parameters

e
MouseEventArgs

A MouseEventArgs that contains the event data.

protected override void OnMouseUp(MouseEventArgs e)
 {
     base.OnMouseUp(e);
     _dragTab = null;
     if (_tabArea.DropdownRectangle.Contains(e.Location))
     {
         if (_tabArea.DropdownHot)
             _tabArea.ShowMenu(this, new Point(_tabArea.DropdownRectangle.Left,
                 _tabArea.DropdownRectangle.Bottom - 2));
         return;
     }
     if (_tabArea.ClickedCloseButton == null)
         return;
     var closeRect = RectangleToTabArea(_tabArea.ClickedCloseButton.CloseButtonRectangle);
     if (closeRect.Contains(e.Location))
         _tabArea.ClickedCloseButton.DockContent.Close();
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition