18 references to VisualStateGroup
PresentationFramework (18)
src\Framework\System\Windows\Controls\Validation.cs (3)
379
IList<
VisualStateGroup
> groups = VisualStateManager.GetVisualStateGroupsInternal(fe);
397
private static bool HasValidationGroup(IList<
VisualStateGroup
> groups)
403
VisualStateGroup
g = groups[groupIndex];
src\Framework\System\Windows\VisualStateManager.cs (15)
43
IList<
VisualStateGroup
> groups = VisualStateManager.GetVisualStateGroupsInternal(stateGroupsRoot);
50
VisualStateGroup
group;
108
protected virtual bool GoToStateCore(FrameworkElement control, FrameworkElement stateGroupsRoot, string stateName,
VisualStateGroup
group, VisualState state, bool useTransitions)
151
new FrameworkPropertyMetadata(new ObservableCollectionDefaultValueFactory<
VisualStateGroup
>()));
159
internal static Collection<
VisualStateGroup
> GetVisualStateGroupsInternal(FrameworkElement obj)
171
return obj.GetValue(VisualStateManager.VisualStateGroupsProperty) as Collection<
VisualStateGroup
>;
192
internal static bool TryGetState(IList<
VisualStateGroup
> groups, string stateName, out
VisualStateGroup
group, out VisualState state)
196
VisualStateGroup
g = groups[groupIndex];
211
private static bool GoToStateInternal(FrameworkElement control, FrameworkElement stateGroupsRoot,
VisualStateGroup
group, VisualState state, bool useTransitions)
335
private static bool ShouldRunStateStoryboard(FrameworkElement control, FrameworkElement stateGroupsRoot, VisualState state,
VisualStateGroup
group)
364
protected void RaiseCurrentStateChanging(
VisualStateGroup
stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot)
384
protected void RaiseCurrentStateChanged(
VisualStateGroup
stateGroup, VisualState oldState, VisualState newState, FrameworkElement control, FrameworkElement stateGroupsRoot)
408
private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root,
VisualStateGroup
group, VisualState newState, VisualTransition transition)
579
internal static VisualTransition GetTransition(FrameworkElement element,
VisualStateGroup
group, VisualState from, VisualState to)