Stylus.GetIsTouchFeedbackEnabled(DependencyObject) 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.
Ottiene il valore della proprietà associata IsTouchFeedbackEnabled nell'elemento specificato.
public:
static bool GetIsTouchFeedbackEnabled(System::Windows::DependencyObject ^ element);
public static bool GetIsTouchFeedbackEnabled (System.Windows.DependencyObject element);
static member GetIsTouchFeedbackEnabled : System.Windows.DependencyObject -> bool
Public Shared Function GetIsTouchFeedbackEnabled (element As DependencyObject) As Boolean
Parametri
- element
- DependencyObject
Oggetto UIElement o ContentElement per cui determinare se il feedback dell'input tocco è abilitato.
Restituisce
true
se il feedback dell'input tocco è abilitato. In caso contrario, false
.
Esempio
Nell'esempio seguente viene illustrato come determinare se il feedback del tocco è abilitato in un oggetto InkCanvas.
bool touchFeedbackEnabled = Stylus.GetIsTouchFeedbackEnabled(inkCanvas1);
Dim touchFeedbackEnabled As Boolean = _
Stylus.GetIsTouchFeedbackEnabled(inkCanvas1)