Stylus.GetIsTapFeedbackEnabled(DependencyObject) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la valeur de la propriété attachée IsTapFeedbackEnabled sur l’élément spécifié.
public:
static bool GetIsTapFeedbackEnabled(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static bool GetIsTapFeedbackEnabled (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetIsTapFeedbackEnabled : System.Windows.DependencyObject -> bool
Public Shared Function GetIsTapFeedbackEnabled (element As DependencyObject) As Boolean
Paramètres
- element
- DependencyObject
UIElement ou ContentElement sur lequel déterminer si le tap feedback est activé.
Retours
true
si le tap feedback est activé pour l’élément spécifié ; sinon, false
.
- Attributs
Exemples
L’exemple suivant montre comment déterminer si les commentaires d’appui sont activés sur un Canvas.
bool tapFeedbackEnabled = Stylus.GetIsTapFeedbackEnabled(canvas1);
Dim tapFeedbackEnabled As Boolean = Stylus.GetIsTapFeedbackEnabled(canvas1)
Remarques
Dans Windows Vista, une courte animation se produit lorsque l’utilisateur appuie sur le contrôle. Par défaut, appuyez sur commentaires est désactivé sur le InkCanvas. Il est activé sur tous les autres contrôles.