Show / Hide Table of Contents

Class VisualTransition

Defines a transition between VisualStates.

Inheritance
System.Object
DependencyObject
VisualTransition
Inherited Members
DependencyObject.GetValue(DependencyProperty)
DependencyObject.SetCurrentValue(DependencyProperty, Object)
DependencyObject.ReadLocalValue(DependencyProperty)
DependencyObject.SetValue(DependencyProperty, Object)
DependencyObject.SetValue(DependencyPropertyKey, Object)
DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs)
DependencyObject.CoerceValue(DependencyProperty)
DependencyObject.Dispatcher
DependencyObject.INTERNAL_OnAttachedToVisualTree()
DependencyObject.INTERNAL_OnDetachedFromVisualTree()
DependencyObject.ClearValue(DependencyProperty)
DependencyObject.ClearValue(DependencyPropertyKey)
DependencyObject.CheckAccess()
DependencyObject.GetAnimationBaseValue(DependencyProperty)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows
Assembly: OpenSilver.dll
Syntax
[NotImplemented]
public class VisualTransition : DependencyObject, IDependencyObject

Properties

| Improve this Doc View Source

From

Gets or sets the name of the VisualState to transition from.

Declaration
[NotImplemented]
public string From { get; set; }
Property Value
Type Description
System.String

The name of the VisualState to transition from.

| Improve this Doc View Source

GeneratedDuration

Gets or sets the amount of time it takes to move from one state to another.

Declaration
[NotImplemented]
public Duration GeneratedDuration { get; set; }
Property Value
Type Description
Duration

The amount of time it takes to move from one state to another.

| Improve this Doc View Source

GeneratedEasingFunction

Easing Function for the transition

Declaration
[NotImplemented]
public IEasingFunction GeneratedEasingFunction { get; set; }
Property Value
Type Description
IEasingFunction
| Improve this Doc View Source

Storyboard

Gets or sets the Storyboard that occurs when the transition occurs.

Declaration
[NotImplemented]
public Storyboard Storyboard { get; set; }
Property Value
Type Description
Storyboard

The Storyboard that occurs when the transition occurs.

| Improve this Doc View Source

To

Gets or sets the name of the VisualState to transition to.

Declaration
[NotImplemented]
public string To { get; set; }
Property Value
Type Description
System.String

The name of the VisualState to transition to.

Extension Methods

DependencyObjectHelper.GetSelfAndAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestorsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualChildren(DependencyObject)
VisualTreeExtensions.GetVisualChildrenAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualDescendants(DependencyObject)
VisualTreeExtensions.GetVisualDescendantsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualSiblings(DependencyObject)
VisualTreeExtensions.GetVisualSiblingsAndSelf(DependencyObject)
  • Improve this Doc
  • View Source