Enlarge Button With Animation : Button Animation « Windows Presentation Foundation « C# / CSharp Tutorial






using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;

    public class MainWindow : Window
    {
        Button btn = new Button();

        [STAThread]
        public static void Main()
        {
            Application app = new Application();
            app.Run(new MainWindow());
        }
        public MainWindow()
        {
            btn.Content = "Expanding Button";
            btn.FontSize = 12;
            btn.HorizontalAlignment = HorizontalAlignment.Center;
            btn.VerticalAlignment = VerticalAlignment.Center;
            btn.Click += ButtonOnClick;
            Content = btn;
        }
        void ButtonOnClick(object sender, RoutedEventArgs args)
        {
            DoubleAnimation anima = new DoubleAnimation();
            anima.Duration = new Duration(TimeSpan.FromSeconds(2));
            anima.From = 12;
            anima.To = 48;
            anima.FillBehavior = FillBehavior.Stop;

            btn.BeginAnimation(Button.FontSizeProperty, anima);
        }
    }








24.3.Button Animation
24.3.1.Shaking a Button with DoubleAnimationShaking a Button with DoubleAnimation
24.3.2.Using common TextElement attached properties to set Button textUsing common TextElement attached properties to set Button text
24.3.3.Create a Fish Eye Button with Double AnimationCreate a Fish Eye Button with Double Animation
24.3.4.Enlarge a Button with XamlEnlarge a Button with Xaml
24.3.5.Click to rotate a ButtonClick to rotate a Button
24.3.6.Click to scale a ButtonClick to scale a Button
24.3.7.Translated button with Code
24.3.8.Scaled button with Code
24.3.9.Skewed button with Code
24.3.10.Rotated button with Code
24.3.11.Enlarge Button With Animation
24.3.12.Enlarge Button with Timer