IShareWindowCommandSourceInterop 接口 (sharewindowcommandsourceinterop.h)

一个本机互操作接口,允许获取 ShareWindowCommandSource 对象。 此接口仅在 C++ 中可用。 另请参阅 IShareWindowCommandSourceInterop.GetForWindow

重要

IShareWindowCommandSourceInterop API 是受限访问功能的一部分, (请参阅 LimitedAccessFeatures 类) 。 有关详细信息或请求解锁令牌,请联系 Microsoft 支持部门

继承

IShareWindowCommandSourceInterop 接口继承自 IUnknown 接口。

方法

IShareWindowCommandSourceInterop 接口具有以下方法。

 
IShareWindowCommandSourceInterop::GetForWindow

获取对应于窗口标识符 (窗口句柄) 的 ShareWindowCommandSource 对象。 (IShareWindowCommandSourceInterop::GetForWindow)

注解

下面是代码示例。

auto interop_factory = winrt::get_activation_factory
    <winrt::Windows::UI::Shell::ShareWindowCommandSource,
    IShareWindowCommandSourceInterop>();
        
winrt::check_hresult(interop_factory->GetForWindow(
    m_hwndOfMyAppCallWindow,
    winrt::guid_of<winrt::Windows::UI::Shell::IShareWindowCommandSource>(), 
    winrt::put_abi(m_shareWindowCommandSource)));

要求

要求
最低受支持的客户端 Windows 内部版本 22000
最低受支持的服务器 Windows 内部版本 22000
标头 sharewindowcommandsourceinterop.h

另请参阅