StylusDevice.Capture 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將手寫筆輸入繫結至特定項目。
多載
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
。
例外狀況
element
為 null
。
element
不是 UIElement,也不是 FrameworkContentElement。
範例
下列範例示範 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
。
例外狀況
element
或 captureMode
為 null
。
element
不是 UIElement,也不是 FrameworkContentElement。
範例
下列範例示範 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)