我有一个按钮名称 Button1。我想在动画中更改此按钮的字体大小。所以我在 Window_Loaded 函数中编写了代码。
DoubleAnimation da = new DoubleAnimation(0, 25, new Duration(TimeSpan.FromSeconds(3)));
//da.TargetPropertyType = "Width";
da.RepeatBehavior = RepeatBehavior.Forever;
button1.BeginAnimation(Button.FontSizeProperty, da);
但我有一个错误-
无法使用“System.Windows.Media.Animation.DoubleAnimation”为“System.Windows.Controls.Button”上的“FontSize”属性设置动画。有关详细信息,请参阅内部异常。
1)如何动画按钮字体大小?2) 我必须在 Button 中设置动画的属性是什么?