IInputPaneInterop 接口 (inputpaneinterop.h)

允许访问桌面应用中 InputPane 类的成员。

继承

IInputPaneInterop 接口继承自 IInspectableIInputPaneInterop 还具有以下类型的成员:

方法

IInputPaneInterop 接口具有这些方法。

 
IInputPaneInterop::GetForWindow

获取指定窗口的 InputPane 对象的实例。

注解

可以通过在 InputPane 类的激活工厂实例上调用 IUnknown::QueryInterface 方法来获取 IInputPaneInterop 接口实例。

有关使用 IInputPaneInterop 接口的示例,请参阅 触摸键盘通知 WPF 示例

以下示例演示 IInputPaneInterop 接口的定义。

[
    uuid(75CF2C57-9195-4931-8332-F0B409E916AF),
]
interface IInputPaneInterop : IInspectable
{
    // Creates an instance of InputPane initialized with the window handle.
    HRESULT GetForWindow([in] HWND appWindow, [in] REFIID riid,
        [out, retval, iid_is(riid)] void** inputPane);
}

对于应用商店应用,请使用 InputPane.GetForCurrentView 方法获取 InputPane 对象。

要求

要求
最低受支持的客户端 Windows 10版本 1607 [仅限桌面应用]
最低受支持的服务器 Windows Server 2016 [仅限桌面应用]
目标平台 Windows
标头 inputpaneinterop.h

另请参阅

IInspectable

InputPane

WindowsRuntimeMarshal.GetActivationFactory