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">
//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();
}
}
}