You only need to input this.Close();
before showing next window.
private void Button_Click_1(object sender, RoutedEventArgs e)
{
Window2 win3 = new Window2();
this.Close();
win3.Show();
}
0
solved Closing a window in WPF
You only need to input this.Close();
before showing next window.
private void Button_Click_1(object sender, RoutedEventArgs e)
{
Window2 win3 = new Window2();
this.Close();
win3.Show();
}
0
solved Closing a window in WPF