Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
TabView.TabStripDragOver Event
Definition
- Namespace:
- Microsoft.UI.Xaml.Controls
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the input system reports an underlying drag event with the TabStrip as the potential drop target.
public:
virtual event DragEventHandler ^ TabStripDragOver;
// Register
event_token TabStripDragOver(DragEventHandler const& handler) const;
// Revoke with event_token
void TabStripDragOver(event_token const* cookie) const;
// Revoke with event_revoker
TabView::TabStripDragOver_revoker TabStripDragOver(auto_revoke_t, DragEventHandler const& handler) const;
public event DragEventHandler TabStripDragOver;
function onTabStripDragOver(eventArgs) { /* Your code */ }
tabView.addEventListener("tabstripdragover", onTabStripDragOver);
tabView.removeEventListener("tabstripdragover", onTabStripDragOver);
- or -
tabView.ontabstripdragover = onTabStripDragOver;
Public Custom Event TabStripDragOver As DragEventHandler
Event Type
Applies to
See also
Feedback
Was this page helpful?
