ContentElement.ApplyAnimationClock Méthode

Définition

Applique une animation à une propriété de dépendance spécifiée sur cet élément.

Surcharges

ApplyAnimationClock(DependencyProperty, AnimationClock)

Applique une animation à une propriété de dépendance spécifiée sur cet élément. Les animations existantes sont arrêtées et remplacées par la nouvelle animation.

ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior)

Applique une animation à une propriété de dépendance spécifiée sur cet élément, avec la possibilité de spécifier ce qui se produit si la propriété a déjà une animation en cours d’exécution.

ApplyAnimationClock(DependencyProperty, AnimationClock)

Applique une animation à une propriété de dépendance spécifiée sur cet élément. Les animations existantes sont arrêtées et remplacées par la nouvelle animation.

public:
 virtual void ApplyAnimationClock(System::Windows::DependencyProperty ^ dp, System::Windows::Media::Animation::AnimationClock ^ clock);
public void ApplyAnimationClock (System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock);
abstract member ApplyAnimationClock : System.Windows.DependencyProperty * System.Windows.Media.Animation.AnimationClock -> unit
override this.ApplyAnimationClock : System.Windows.DependencyProperty * System.Windows.Media.Animation.AnimationClock -> unit
Public Sub ApplyAnimationClock (dp As DependencyProperty, clock As AnimationClock)

Paramètres

dp
DependencyProperty

Identificateur de la propriété à animer.

clock
AnimationClock

Horloge d’animation qui contrôle et déclare l’animation.

Implémente

Remarques

Pour supprimer une animation d’une propriété, spécifiez l’identificateur de cette propriété comme dp et le spécifiez clock comme null. Cela supprime l’animation et la propriété animée est définie sur sa valeur de base. Toutefois, l’horloge d’animation associée à l’origine n’est pas arrêtée. Toutes les autres animations affectées à cette horloge continuent à s’exécuter.

S’applique à

ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior)

Applique une animation à une propriété de dépendance spécifiée sur cet élément, avec la possibilité de spécifier ce qui se produit si la propriété a déjà une animation en cours d’exécution.

public:
 virtual void ApplyAnimationClock(System::Windows::DependencyProperty ^ dp, System::Windows::Media::Animation::AnimationClock ^ clock, System::Windows::Media::Animation::HandoffBehavior handoffBehavior);
public void ApplyAnimationClock (System.Windows.DependencyProperty dp, System.Windows.Media.Animation.AnimationClock clock, System.Windows.Media.Animation.HandoffBehavior handoffBehavior);
abstract member ApplyAnimationClock : System.Windows.DependencyProperty * System.Windows.Media.Animation.AnimationClock * System.Windows.Media.Animation.HandoffBehavior -> unit
override this.ApplyAnimationClock : System.Windows.DependencyProperty * System.Windows.Media.Animation.AnimationClock * System.Windows.Media.Animation.HandoffBehavior -> unit
Public Sub ApplyAnimationClock (dp As DependencyProperty, clock As AnimationClock, handoffBehavior As HandoffBehavior)

Paramètres

dp
DependencyProperty

Propriété à animer.

clock
AnimationClock

Horloge d’animation qui contrôle et déclare l’animation.

handoffBehavior
HandoffBehavior

Valeur de l’énumération. La valeur par défaut est SnapshotAndReplace, ce qui arrête toute animation existante et la remplace par la nouvelle.

Implémente

Remarques

Pour supprimer une animation d’une propriété, spécifiez l’identificateur de cette propriété comme dp et le spécifiez clock comme null. Cela supprime l’animation et la propriété animée est définie sur sa valeur de base. Toutefois, l’horloge d’animation associée à l’origine n’est pas arrêtée. Toutes les autres animations affectées à cette horloge continuent à s’exécuter.

S’applique à