StylusDevice.Capture Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Associa input dallo stilo a un particolare elemento.
Overload
Capture(IInputElement) |
Associa input dallo stilo all'elemento specificato. |
Capture(IInputElement, CaptureMode) |
Associa lo stilo all'elemento specificato. |
Capture(IInputElement)
Associa input dallo stilo all'elemento specificato.
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
Parametri
- element
- IInputElement
Elemento a cui lo stilo è associato.
Restituisce
true
se l'input viene acquisito correttamente; in caso contrario, false
. Il valore predefinito è false
.
Eccezioni
element
è null
.
element
non è né UIElement né FrameworkContentElement.
Esempio
Nell'esempio seguente viene illustrato il Capture(IInputElement) metodo.
// Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target);
' Bind stylus to tablet's input element
myStylusDevice.Capture(myStylusDevice.Target)
Si applica a
Capture(IInputElement, CaptureMode)
Associa lo stilo all'elemento specificato.
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
Parametri
- element
- IInputElement
Elemento a cui lo stilo è associato.
- captureMode
- CaptureMode
Uno dei valori di CaptureMode.
Restituisce
true
se l'input viene acquisito correttamente; in caso contrario, false
. Il valore predefinito è false
.
Eccezioni
element
o captureMode
è null
.
element
non è né UIElement né FrameworkContentElement.
Esempio
Nell'esempio seguente viene illustrato il Capture(IInputElement, CaptureMode) metodo.
// 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)