Class VisualTransition
Defines a transition between VisualStates.
Inherited Members
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
Properties
| Improve this Doc View SourceFrom
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. |
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. |
GeneratedEasingFunction
Easing Function for the transition
Declaration
[NotImplemented]
public IEasingFunction GeneratedEasingFunction { get; set; }
Property Value
Type | Description |
---|---|
IEasingFunction |
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. |
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. |