18 references to VisualStateGroup
PresentationFramework (18)
System\Windows\Controls\Validation.cs (3)
346IList<VisualStateGroup> groups = VisualStateManager.GetVisualStateGroupsInternal(fe); 364private static bool HasValidationGroup(IList<VisualStateGroup> groups) 370VisualStateGroup g = groups[groupIndex];
System\Windows\VisualStateManager.cs (15)
35IList<VisualStateGroup> groups = VisualStateManager.GetVisualStateGroupsInternal(stateGroupsRoot); 42VisualStateGroup group; 94protected virtual bool GoToStateCore(FrameworkElement control, FrameworkElement stateGroupsRoot, string stateName, VisualStateGroup group, VisualState state, bool useTransitions) 131new FrameworkPropertyMetadata(new ObservableCollectionDefaultValueFactory<VisualStateGroup>())); 139internal static Collection<VisualStateGroup> GetVisualStateGroupsInternal(FrameworkElement obj) 148return obj.GetValue(VisualStateManager.VisualStateGroupsProperty) as Collection<VisualStateGroup>; 166internal static bool TryGetState(IList<VisualStateGroup> groups, string stateName, out VisualStateGroup group, out VisualState state) 170VisualStateGroup g = groups[groupIndex]; 185private static bool GoToStateInternal(FrameworkElement control, FrameworkElement stateGroupsRoot, VisualStateGroup group, VisualState state, bool useTransitions) 297private static bool ShouldRunStateStoryboard(FrameworkElement control, FrameworkElement stateGroupsRoot, VisualState state, VisualStateGroup group) 326protected void RaiseCurrentStateChanging(VisualStateGroup stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot) 339protected void RaiseCurrentStateChanged(VisualStateGroup stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot) 356private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root, VisualStateGroup group, VisualState newState, VisualTransition transition) 527internal static VisualTransition GetTransition(FrameworkElement element, VisualStateGroup group, VisualState from, VisualState to)