0
 private void Button_2_Click(object sender, RoutedEventArgs e)
 {
     Views.Window1 win1 = new Views.Window1();
     win1.Show();
 }
musefan
  • 47,875
  • 21
  • 135
  • 185
Bimal
  • 45
  • 1
  • 1
  • 3

1 Answers1

0

There is no built-in Multiple Document Interface (MDI) support available in WPF. There are some third-party solutions that you can try out though:

How to implement mdi in a WPF application

mm8
  • 163,881
  • 10
  • 57
  • 88