C# Class Microsoft.Silverlight.Testing.Client.VisualStates

Visual states helper code.
Mostrar archivo Open project: garyjohnson/wpnest

Public Methods

Method Description
GetImplementationRoot ( DependencyObject dependencyObject ) : FrameworkElement

Gets the implementation root of the Control.

Implements Silverlight's corresponding internal property on Control.

TryGetVisualStateGroup ( DependencyObject dependencyObject, string groupName ) : System.Windows.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 System.Windows.DependencyObject The DependencyObject.
return System.Windows.FrameworkElement

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 ) : System.Windows.VisualStateGroup
dependencyObject System.Windows.DependencyObject The dependency object.
groupName string The visual state group's name.
return System.Windows.VisualStateGroup