C# Class System.Windows.Controls.VisualStates

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

Méthodes publiques

Méthode 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 méthode

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.
Résultat FrameworkElement

GoToState() public static méthode

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. ///
Résultat void

TryGetVisualStateGroup() public static méthode

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.
Résultat VisualStateGroup