我刚刚创建了一个c# Windows通用应用程序项目(Visual Studio 2015),
使用
就可以了<DoubleAnimation Duration="00:00:01" To="0" Storyboard.TargetName="mainTextBlock" Storyboard.TargetProperty="Opacity"/>
但这不是
<DoubleAnimation Duration="00:00:01" To="0" Storyboard.TargetName="mainTextBlock" Storyboard.TargetProperty="FontSize"/>
只有当我将持续时间设置为0时才能工作
<DoubleAnimation Duration="00:00:00" To="0" Storyboard.TargetName="mainTextBlock" Storyboard.TargetProperty="FontSize"/>
但是我读了一些教程,他们设置了改变字体大小的持续时间,所以我错过了什么?
我找到解决办法了,
需要添加属性
EnableDependentAnimation = " True "
<DoubleAnimation Duration="00:00:01" To="0"
EnableDependentAnimation="True"
Storyboard.TargetName="mainTextBlock" Storyboard.TargetProperty="FontSize"/>