拡大・縮小だけなら簡単です。
private void button1_Click(object sender, RoutedEventArgs e)
{
button1.BeginAnimation(Button.FontSizeProperty, new DoubleAnimation( 40,
new System.Windows.Duration(TimeSpan.FromSeconds(2)),
FillBehavior.Stop) { AutoReverse = true });
}
しかし、今はフォントサイズが40になったら、2秒間そのままにしてから、縮小することを望んでいます。これを行う方法?