也许尝试使用 VisualStateManager?
这是来自Microsoft 的 ListBox Styles and Templates 页面的想法
<Style x:Key="MyStyle" TargeType="{x:Type Tree:MyListBox}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Tree:MyListBox}">
<Border x:Name="Border">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="SelectionStates">
<VisualState x:Name="Unselected"/>
<VisualState x:Name="Selected">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="myUIElementName"
Storyboard.TargetProperty="myUIElementProperty">
<DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{DynamicResource MyResourceKey}"/>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
.... more code here....
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
我有一个由 Shawn Wildermuth 编写的关于此类动画/更改的教程——我仍然经常参考它。
希望这会有所帮助,并且可以使您朝着正确的方向前进。