WPF C# Tutorial

  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Animating Combine Transforms" Height="320" Width="300">
  
    
      
      
      
      
      
      
        
          
            
            
            
          

        

      
      
        
          
            
              
                                  Storyboard.TargetProperty="RenderTransform.Children[0].ScaleX"
                  To="1.5" Duration="0:0:1" RepeatBehavior="1x" />
                                  Storyboard.TargetProperty="RenderTransform.Children[0].ScaleY"
                  To="1.5" Duration="0:0:1" RepeatBehavior="1x" />
                                  Storyboard.TargetProperty="RenderTransform.Children[1].AngleX"
                  To="30" Duration="0:0:1" RepeatBehavior="1x" />
              

            
          

        
        
          
            
              
                                  Storyboard.TargetProperty="RenderTransform.Children[0].ScaleX"
                  Duration="0:0:0.5" />
                                  Storyboard.TargetProperty="RenderTransform.Children[0].ScaleY"
                  Duration="0:0:0.5" />
                                  Storyboard.TargetProperty="RenderTransform.Children[1].AngleX"
                  Duration="0:0:0.5" />
              

            

          

        
      

    
  

  
    Button1
    Button2
    Close
    
  

//File:Window.xaml.cs
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Shapes;
namespace WpfApplication1
{
    public partial class CombineTransformAnimation : Window
    {
        public CombineTransformAnimation()
        {
            InitializeComponent();
        }
        private void btn1_Click(object sender,RoutedEventArgs e)
        {
            tb1.Text = "You are clicking on " + btn1.Content;
        }
        private void btn2_Click(object sender,RoutedEventArgs e)
        {
            tb1.Text = "You are clicking on " + btn2.Content;
        }
        private void btnClose_Click(object sender,RoutedEventArgs e)
        {
            this.Close();
        }
    }
}