ボタン名 Button1 が 1 つあります。このボタンのフォントサイズをアニメーションで変更したいです。だから私は 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) ボタンでアニメーション化するために必要なプロパティは何ですか?