How can I show wpf windows in an MDI type menu?

1

I am developing the interface of an academic system with WPF C # with styles of MAHAPPSMETRO and MATERIAL DESIGN and I need to show the windows of the system in an MDI style menu of windows forms but when I was researching I read that WPF is no longer I take into account the MDI.

My question is can you get an MDI view in WPF? And if not any suggestions how to display the system windows without affecting the UX user experience.

    
asked by Joab 22.09.2017 в 08:43
source

1 answer

1

MDI natively it is clear that it is not supported, what is done in these cases is to show the windows in a container, as is suggested in this example:

Multiple Document Interface (MDI) in WPF

This can also be applied as Docking Windows with components such as

AvalonDock

I think these alternatives are better than MDI windows

    
answered by 22.09.2017 / 16:48
source