diff --git a/xml/System.Windows/VisualStateGroup.xml b/xml/System.Windows/VisualStateGroup.xml index aa6b37218a9..491636479c5 100644 --- a/xml/System.Windows/VisualStateGroup.xml +++ b/xml/System.Windows/VisualStateGroup.xml @@ -32,7 +32,7 @@ You add to a control by setting the `VisualStateManager.VisualStateGroups` attached property on the control. You put states that are mutually exclusive to each other in the same . For example, the has two objects. One contains the states, `Normal`, `MouseOver`, `Pressed`, and `Disabled`. The other contains the states, `Checked`, `UnChecked`, and `Indeterminate`. The can be in states `MouseOver` and `UnChecked` at the same time, but it cannot be in the `MouseOver` and `Pressed` states at the same time. - Although you can add objects to any element, they are a particularly useful way to enable others to redefine the visual behavior of a . If you create a custom control that uses a , you can specify which states that control can be in by adding a on its class definition. Then anyone who creates a new for your control can add objects to the template. The enables designer tools, such as Expression Blend, to expose the control's states. States with the same belong in the same . + Although you can add objects to any element, they are a particularly useful way to enable others to redefine the visual behavior of a . If you create a custom control that uses a , you can specify which states that control can be in by adding a on its class definition. Then anyone who creates a new for your control can add objects to the template. The enables designer tools, such as Visual Studio and Blend for Visual Studio, to expose the control's states. States with the same belong in the same . For more information about how to use objects in a , see [Customizing the Appearance of an Existing Control by Creating a ControlTemplate](~/docs/framework/wpf/controls/customizing-the-appearance-of-an-existing-control.md). For more information about how to create controls that use the , see [Creating a Control That Has a Customizable Appearance](~/docs/framework/wpf/controls/creating-a-control-that-has-a-customizable-appearance.md).