Back to Devexpress

NavBarDragDropEventHandler Delegate

windowsforms-devexpress-dot-xtranavbar-dot-viewinfo-1fa6a474.md

latest2.1 KB
Original Source

NavBarDragDropEventHandler Delegate

Represents a method that will handle the NavBarControl.NavDragDrop and NavBarControl.NavDragOver events.

Namespace : DevExpress.XtraNavBar.ViewInfo

Assembly : DevExpress.XtraNavBar.v25.2.dll

NuGet Package : DevExpress.Win

Declaration

csharp
public delegate void NavBarDragDropEventHandler(
    object sender,
    NavBarDragDropEventArgs e
);
vb
Public Delegate Sub NavBarDragDropEventHandler(
    sender As Object,
    e As NavBarDragDropEventArgs
)

Parameters

NameTypeDescription
senderObject

An object representing the event source (typically the NavBarControl).

| | e | NavBarDragDropEventArgs |

A NavBarDragDropEventArgs object that contains event data.

|

Remarks

When you create an NavBarDragDropEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

See Also

NavDragDrop

NavDragOver

NavBarDragDropEventArgs

DevExpress.XtraNavBar.ViewInfo Namespace