18 references to VisualStateGroup
PresentationFramework (18)
System\Windows\Controls\Validation.cs (3)
361IList<VisualStateGroup> groups = VisualStateManager.GetVisualStateGroupsInternal(fe); 379private static bool HasValidationGroup(IList<VisualStateGroup> groups) 385VisualStateGroup g = groups[groupIndex];
System\Windows\VisualStateManager.cs (15)
41IList<VisualStateGroup> groups = VisualStateManager.GetVisualStateGroupsInternal(stateGroupsRoot); 48VisualStateGroup group; 100protected virtual bool GoToStateCore(FrameworkElement control, FrameworkElement stateGroupsRoot, string stateName, VisualStateGroup group, VisualState state, bool useTransitions) 137new FrameworkPropertyMetadata(new ObservableCollectionDefaultValueFactory<VisualStateGroup>())); 145internal static Collection<VisualStateGroup> GetVisualStateGroupsInternal(FrameworkElement obj) 154return obj.GetValue(VisualStateManager.VisualStateGroupsProperty) as Collection<VisualStateGroup>; 172internal static bool TryGetState(IList<VisualStateGroup> groups, string stateName, out VisualStateGroup group, out VisualState state) 176VisualStateGroup g = groups[groupIndex]; 191private static bool GoToStateInternal(FrameworkElement control, FrameworkElement stateGroupsRoot, VisualStateGroup group, VisualState state, bool useTransitions) 303private static bool ShouldRunStateStoryboard(FrameworkElement control, FrameworkElement stateGroupsRoot, VisualState state, VisualStateGroup group) 332protected void RaiseCurrentStateChanging(VisualStateGroup stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot) 345protected void RaiseCurrentStateChanged(VisualStateGroup stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot) 362private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root, VisualStateGroup group, VisualState newState, VisualTransition transition) 533internal static VisualTransition GetTransition(FrameworkElement element, VisualStateGroup group, VisualState from, VisualState to)