Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
TabView.TabStripDrop 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 drop event with the TabStrip as the drop target.
public:
virtual event DragEventHandler ^ TabStripDrop;
// Register
event_token TabStripDrop(DragEventHandler const& handler) const;
// Revoke with event_token
void TabStripDrop(event_token const* cookie) const;
// Revoke with event_revoker
TabView::TabStripDrop_revoker TabStripDrop(auto_revoke_t, DragEventHandler const& handler) const;
public event DragEventHandler TabStripDrop;
function onTabStripDrop(eventArgs) { /* Your code */ }
tabView.addEventListener("tabstripdrop", onTabStripDrop);
tabView.removeEventListener("tabstripdrop", onTabStripDrop);
- or -
tabView.ontabstripdrop = onTabStripDrop;
Public Custom Event TabStripDrop As DragEventHandler
Event Type
Applies to
See also
Feedback
Was this page helpful?
