Hello,
in procedural code in can do the following:
// Add two event handler for the button click event
button1.Click += new RoutedEventHandler(button1_Click_1);
button1.Click += new RoutedEventHandler(button1_Click_2);
But how can I add multiple event handlers for the button's click event in XAML? Thanks for any hint!