C# Class System.Windows.Controls.VisualStates

Names and helpers for visual states in the controls.
Datei anzeigen Open project: Warewolf-ESB/Warewolf Class Usage Examples

Public Methods

Method Description
GetImplementationRoot ( DependencyObject dependencyObject ) : FrameworkElement

Gets the implementation root of the Control.

Implements Silverlight's corresponding internal property on Control.

GoToState ( Control control, bool useTransitions ) : void

Use VisualStateManager to change the visual state of the control.

TryGetVisualStateGroup ( DependencyObject dependencyObject, string groupName ) : VisualStateGroup

This method tries to get the named VisualStateGroup for the dependency object. The provided object's ImplementationRoot will be looked up in this call.

Method Details

GetImplementationRoot() public static method

Gets the implementation root of the Control.
Implements Silverlight's corresponding internal property on Control.
public static GetImplementationRoot ( DependencyObject dependencyObject ) : FrameworkElement
dependencyObject DependencyObject The DependencyObject.
return FrameworkElement

GoToState() public static method

Use VisualStateManager to change the visual state of the control.
public static GoToState ( Control control, bool useTransitions ) : void
control Control /// Control whose visual state is being changed. ///
useTransitions bool /// A value indicating whether to use transitions when updating the /// visual state, or to snap directly to the new visual state. ///
return void

TryGetVisualStateGroup() public static method

This method tries to get the named VisualStateGroup for the dependency object. The provided object's ImplementationRoot will be looked up in this call.
public static TryGetVisualStateGroup ( DependencyObject dependencyObject, string groupName ) : VisualStateGroup
dependencyObject DependencyObject The dependency object.
groupName string The visual state group's name.
return VisualStateGroup