StylusDevice.Capture 方法

定义

将触笔输入绑定到特定元素。

重载

Capture(IInputElement)

将触笔输入绑定到指定元素。

Capture(IInputElement, CaptureMode)

将触笔绑定到指定元素。

Capture(IInputElement)

将触笔输入绑定到指定元素。

public:
 bool Capture(System::Windows::IInputElement ^ element);
public bool Capture (System.Windows.IInputElement element);
member this.Capture : System.Windows.IInputElement -> bool
Public Function Capture (element As IInputElement) As Boolean

参数

element
IInputElement

触笔绑定到的元素。

返回

如果成功捕获输入元素,则为 true;否则为 false。 默认值为 false

例外

elementnull

示例

下面的示例演示 Capture(IInputElement) 方法。

// Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target);
' Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target)

适用于

Capture(IInputElement, CaptureMode)

将触笔绑定到指定元素。

public:
 bool Capture(System::Windows::IInputElement ^ element, System::Windows::Input::CaptureMode captureMode);
public bool Capture (System.Windows.IInputElement element, System.Windows.Input.CaptureMode captureMode);
member this.Capture : System.Windows.IInputElement * System.Windows.Input.CaptureMode -> bool
Public Function Capture (element As IInputElement, captureMode As CaptureMode) As Boolean

参数

element
IInputElement

触笔绑定到的元素。

captureMode
CaptureMode

CaptureMode 值之一。

返回

如果成功捕获输入元素,则为 true;否则为 false。 默认值为 false

例外

elementcaptureModenull

示例

下面的示例演示 Capture(IInputElement, CaptureMode) 方法。

// Bind stylus to tablet's input element
// through entire subtree
myStylusDevice.Capture(myStylusDevice.Target, CaptureMode.SubTree);
' Bind stylus to tablet's input element
' through entire subtree
myStylusDevice.Capture(myStylusDevice.Target, CaptureMode.SubTree)

适用于