ToolTipService.GetShowDuration(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é jointe ShowDuration pour un objet.
public:
static int GetShowDuration(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static int GetShowDuration (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetShowDuration : System.Windows.DependencyObject -> int
Public Shared Function GetShowDuration (element As DependencyObject) As Integer
Paramètres
- element
- DependencyObject
Objet à partir duquel la valeur de propriété est lue.
Retours
Valeur de la propriété ShowDuration de l'objet.
- Attributs
Exemples
L’exemple suivant montre comment obtenir la valeur de la ToolTipService.ShowDuration
propriété jointe. La FindName méthode recherche l’objet appelé ellipse2
, qui est un Ellipse.
myInt = ToolTipService.GetShowDuration(
(DependencyObject)FindName("ellipse2"));
myInt = ToolTipService.GetShowDuration(CType(FindName("ellipse2"), DependencyObject))