18 references to VisualStateGroup
PresentationFramework (18)
System\Windows\Controls\Validation.cs (3)
353IList<VisualStateGroup> groups = VisualStateManager.GetVisualStateGroupsInternal(fe); 371private static bool HasValidationGroup(IList<VisualStateGroup> groups) 377VisualStateGroup g = groups[groupIndex];
System\Windows\VisualStateManager.cs (15)
36IList<VisualStateGroup> groups = VisualStateManager.GetVisualStateGroupsInternal(stateGroupsRoot); 43VisualStateGroup group; 95protected virtual bool GoToStateCore(FrameworkElement control, FrameworkElement stateGroupsRoot, string stateName, VisualStateGroup group, VisualState state, bool useTransitions) 132new FrameworkPropertyMetadata(new ObservableCollectionDefaultValueFactory<VisualStateGroup>())); 140internal static Collection<VisualStateGroup> GetVisualStateGroupsInternal(FrameworkElement obj) 149return obj.GetValue(VisualStateManager.VisualStateGroupsProperty) as Collection<VisualStateGroup>; 167internal static bool TryGetState(IList<VisualStateGroup> groups, string stateName, out VisualStateGroup group, out VisualState state) 171VisualStateGroup g = groups[groupIndex]; 186private static bool GoToStateInternal(FrameworkElement control, FrameworkElement stateGroupsRoot, VisualStateGroup group, VisualState state, bool useTransitions) 298private static bool ShouldRunStateStoryboard(FrameworkElement control, FrameworkElement stateGroupsRoot, VisualState state, VisualStateGroup group) 327protected void RaiseCurrentStateChanging(VisualStateGroup stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot) 340protected void RaiseCurrentStateChanged(VisualStateGroup stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot) 357private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root, VisualStateGroup group, VisualState newState, VisualTransition transition) 528internal static VisualTransition GetTransition(FrameworkElement element, VisualStateGroup group, VisualState from, VisualState to)