|
<vsm:VisualStateManager.VisualStateGroups>
<vsm:VisualStateGroup x:Name="CommonStates">
<vsm:VisualState x:Name="Normal"/>
<vsm:VisualState x:Name="MouseOver" />
<vsm:VisualState x:Name="Disabled" />
</vsm:VisualStateGroup>
<vsm:VisualStateGroup x:Name="FocusStates">
<vsm:VisualState x:Name="Focused">
<Storyboard>
<ObjectAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="FocusRectangle" Storyboard.TargetProperty="(UIElement.Visibility)">
<DiscreteObjectKeyFrame KeyTime="00:00:00">
<DiscreteObjectKeyFrame.Value>
<Visibility>Visible</Visibility>
</DiscreteObjectKeyFrame.Value>
</DiscreteObjectKeyFrame>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</vsm:VisualState>
<vsm:VisualState x:Name="Unfocused">
<Storyboard>
<ObjectAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="FocusRectangle" Storyboard.TargetProperty="(UIElement.Visibility)">
<DiscreteObjectKeyFrame KeyTime="00:00:00">
<DiscreteObjectKeyFrame.Value>
<Visibility>Collapsed</Visibility>
</DiscreteObjectKeyFrame.Value>
</DiscreteObjectKeyFrame>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</vsm:VisualState>
</vsm:VisualStateGroup>
<vsm:VisualStateGroup x:Name="SelectionStates">
<vsm:VisualState x:Name="Selected">
<Storyboard>
<DoubleAnimation Storyboard.TargetName="tbClientName" Storyboard.TargetProperty="FontSize" From="32" To="16" Duration="00:00:00.0000000"/>
<DoubleAnimation Storyboard.TargetName="tbClientName" Storyboard.TargetProperty="Height" From="50" To="22" Duration="00:00:00.0000000"/>
</Storyboard>
</vsm:VisualState>
<vsm:VisualState x:Name="Unselected">
<Storyboard>
<DoubleAnimation Storyboard.TargetName="tbClientName" Storyboard.TargetProperty="FontSize" From="16" To="32" Duration="00:00:00.0000000"/>
<DoubleAnimation Storyboard.TargetName="tbClientName" Storyboard.TargetProperty="Height" From="22" To="50" Duration="00:00:00.0000000"/>
</Storyboard>
</vsm:VisualState>
<vsm:VisualState x:Name="SelectedUnfocused">
<Storyboard>
<DoubleAnimation Storyboard.TargetName="tbClientName" Storyboard.TargetProperty="FontSize" From="32" To="16" Duration="00:00:00.0000000"/>
<DoubleAnimation Storyboard.TargetName="tbClientName" Storyboard.TargetProperty="Height" From="50" To="22" Duration="00:00:00.0000000"/>
</Storyboard>
</vsm:VisualState>
</vsm:VisualStateGroup>
</vsm:VisualStateManager.VisualStateGroups>
|