I was wondering if this is possible? It seems like a WPF application must have one and only one MainWindow, which is the window for the application. If I create other windows and show them, will they show up as separate items in the taskbar like MS Word?
Share
Seems like I was overthinking this. All I needed to do was create the child window and call
Window.Show().Of course, any “MDI”-ness won’t be baked in and will need to be managed manually, using this solution.