Back to Devexpress

XtraTabbedMdiManager.MouseMove Event

windowsforms-devexpress-dot-xtratabbedmdi-dot-xtratabbedmdimanager-8599c9b5.md

latest4.3 KB
Original Source

XtraTabbedMdiManager.MouseMove Event

Occurs when the mouse pointer moves over a tabbed MDI.

Namespace : DevExpress.XtraTabbedMdi

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DXCategory("Events")]
public event MouseEventHandler MouseMove
vb
<DXCategory("Events")>
Public Event MouseMove As MouseEventHandler

Event Data

The MouseMove event's data class is MouseEventArgs. The following properties provide information specific to this event:

PropertyDescription
ButtonGets which mouse button was pressed.
ClicksGets the number of times the mouse button was pressed and released.
DeltaGets a signed count of the number of detents the mouse wheel has rotated, multiplied by the WHEEL_DELTA constant. A detent is one notch of the mouse wheel.
LocationGets the location of the mouse during the generating mouse event.
XGets the x-coordinate of the mouse during the generating mouse event.
YGets the y-coordinate of the mouse during the generating mouse event.

Remarks

Mouse events occur in the following order:

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MouseMove event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-tabbed-mdi-manager-custom-tab-header-tooltip/CS/WindowsApplication1/Helper/ThumbnailHintHelper.cs#L22

csharp
_Manager = manager;
    manager.MouseMove += new MouseEventHandler(manager_MouseMove);
}

winforms-tabbed-mdi-manager-custom-tab-header-tooltip/VB/WindowsApplication1/Helper/ThumbnailHintHelper.vb#L16

vb
_Manager = manager
    AddHandler manager.MouseMove, New MouseEventHandler(AddressOf manager_MouseMove)
End Sub

See Also

XtraTabbedMdiManager Class

XtraTabbedMdiManager Members

DevExpress.XtraTabbedMdi Namespace