Comment faire ouvrir une fenêtre d'ouvrir le bouton dans WPF

private void Button_Click(object sender, RoutedEventArgs e)
{
    window2 win2 = new window2();
    win2.Show();
    this.Close();
}
Bored Bird