我有一个非常基本的用户控件,带有一个带有图像的按钮。我想通过将其更改为不同的图像来为按钮的图像设置动画。
<UserControl.Resources>
<Image x:Key="GlyphDefault" Source="pack://application:,,,/X;component/images/Glyphs_Default.png" Height="8" Width="8" />
<Image x:Key="GlyphClicked" Source="pack://application:,,,/X;component/images/Glyphs_Click.png" Height="8" Width="8" />
</UserControl.Resources>
<Grid>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup Name="MouseStates">
<VisualState Name="MouseHover" >
<Storyboard>
<ObjectAnimationUsingKeyFrames
Storyboard.TargetName="GlyphButton"
Storyboard.TargetProperty="Content"
Duration="0:0:1" >
<ObjectAnimationUsingKeyFrames.KeyFrames>
<DiscreteObjectKeyFrame KeyTime="0:0:1">
<DiscreteObjectKeyFrame.Value="{StaticResource GlyphClicked}" />
</DiscreteObjectKeyFrame>
</ObjectAnimationUsingKeyFrames.KeyFrames>
</ObjectAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
<VisualState Name="MouseNotHover" >
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Button x:Name="GlyphButton"
MouseLeave="GlyphButton_MouseLeave"
MouseEnter="GlyphButton_MouseEnter"
Content="{StaticResource GlyphDefault}"
/>
</Grid>
不幸的是,当我运行它并将鼠标悬停在按钮上时,我得到“Freezable 不能被冻结”异常(鼠标事件处理程序更改状态)。它似乎正在尝试冻结当前图像,但由于某种原因不能。
我也尝试过不使用静态资源(只是将图像内联),但同样的错误。奇怪的是,我几乎找不到关于在 Content 属性上制作动画的文档或博客。我不得不想象这将是一个常见的场景。关于我做错了什么的任何想法?
我非常感谢您在这方面的帮助!