I want to determine another button is clicked in WPF. I wrote same code as below, when I clicked that button the animation works after that when I clicked same button the animation work like as else block. But I want to control if another button is clicked and than I want to work of the else block.
int i = 0;
private void btnDashboard_Click(object sender, RoutedEventArgs e)
{
// btnDashboard.Click += btnDashboard_Click;
// Button btnSender = (Button)sender;
if (i%2==0)
{
DoubleAnimation anim = new DoubleAnimation(250, 1470, new Duration(TimeSpan.FromMilliseconds(300)));
btnDashboard.BeginAnimation(FrameworkElement.WidthProperty, anim);
((ApplicationShell)App.Current.MainWindow).ShowPages(new UCDashboardIndicatorView());
i++;
}
else
{
DoubleAnimation anim = new DoubleAnimation(1470, 250, new Duration(TimeSpan.FromMilliseconds(300)));
btnDashboard.BeginAnimation(FrameworkElement.WidthProperty, anim);
base.OnApplyTemplate();
i++;
}
}
How can I control it?
if you want to use same Click handler for two buttons, Try this:
Also make sure each button has a Name property set in XAML so that you can access it in code behind. in XAML: