Class VisualStateGroup
A group of mutually exclusive visual states.
Inheritance
System.Object
VisualStateGroup
Namespace: Syncfusion.Windows
Assembly: Syncfusion.Shared.Wpf.dll
Syntax
public class VisualStateGroup : DependencyObject
Constructors
VisualStateGroup()
Declaration
public VisualStateGroup()
Properties
Name
The Name of the VisualStateGroup.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
States
VisualStates in the group.
Declaration
public IList States { get; }
Property Value
Type |
---|
System.Collections.IList |
Transitions
Transitions between VisualStates in the group.
Declaration
public IList Transitions { get; }
Property Value
Type |
---|
System.Collections.IList |
Events
CurrentStateChanged
Raised when transition begins
Declaration
public event EventHandler<VisualStateChangedEventArgs> CurrentStateChanged
Event Type
Type |
---|
System.EventHandler<VisualStateChangedEventArgs> |
CurrentStateChanging
Raised when transition ends and new state storyboard begins.
Declaration
public event EventHandler<VisualStateChangedEventArgs> CurrentStateChanging
Event Type
Type |
---|
System.EventHandler<VisualStateChangedEventArgs> |