Freigeben über


TabView.TabTearOutWindowRequested Event

Definition

Occurs when the user has started to drag the selected tabs and CanTearOutTabs is set to true.

// Register
event_token TabTearOutWindowRequested(TypedEventHandler<TabView, TabViewTabTearOutWindowRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void TabTearOutWindowRequested(event_token const* cookie) const;

// Revoke with event_revoker
TabView::TabTearOutWindowRequested_revoker TabTearOutWindowRequested(auto_revoke_t, TypedEventHandler<TabView, TabViewTabTearOutWindowRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<TabView,TabViewTabTearOutWindowRequestedEventArgs> TabTearOutWindowRequested;
function onTabTearOutWindowRequested(eventArgs) { /* Your code */ }
tabView.addEventListener("tabtearoutwindowrequested", onTabTearOutWindowRequested);
tabView.removeEventListener("tabtearoutwindowrequested", onTabTearOutWindowRequested);
- or -
tabView.ontabtearoutwindowrequested = onTabTearOutWindowRequested;
Public Custom Event TabTearOutWindowRequested As TypedEventHandler(Of TabView, TabViewTabTearOutWindowRequestedEventArgs) 

Event Type

Remarks

Handle this event to create a new Window in which to host the torn-out tabs. In the event handler, create the new window and set the event args NewWindowId property to the AppWindow.Id of the new window.

This event occurs only when the CanTearOutTabs property is true.

Applies to

See also