WindowTabManager.TabSwitchRequested 事件

定义

当选项卡从系统外壳图面切换到 时发生。

// Register
event_token TabSwitchRequested(TypedEventHandler<WindowTabManager, WindowTabSwitchRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WindowTabManager::TabSwitchRequested_revoker TabSwitchRequested(auto_revoke_t, TypedEventHandler<WindowTabManager, WindowTabSwitchRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<WindowTabManager,WindowTabSwitchRequestedEventArgs> TabSwitchRequested;
function onTabSwitchRequested(eventArgs) { /* Your code */ }
windowTabManager.addEventListener("tabswitchrequested", onTabSwitchRequested);
windowTabManager.removeEventListener("tabswitchrequested", onTabSwitchRequested);
- or -
windowTabManager.ontabswitchrequested = onTabSwitchRequested;
Public Custom Event TabSwitchRequested As TypedEventHandler(Of WindowTabManager, WindowTabSwitchRequestedEventArgs) 

事件类型

注解

重要

此 API 仅适用于 Win32 桌面应用。 不支持 UWP 和其他应用类型。

处理此事件,使已在应用中切换到活动选项卡的选项卡。

适用于