We have an application developed in WPF. i wanted to implement one functionality here.
my main window, lets call it as MainWindow. And the windows that can be opened from the MainWindow are independent. they are not child windows. They have links from main window.
MainWindow - Window1 - Window11 - Window111
MainWindow - Window2 - Window22- Window222
MainWindow - Window3 - Window33 - Window333
MainWindow - Window4 - Window44- Window444
MainWindow - Window5 - Window55 - Window555
MainWindow - Window6 - Window66- Window666
So here it goes. The first level of windows like Window1,Window2, Window3... can be directly opened from Main window. Second level opens based on selection from first level windows. Third level opens from Second level...
Now i wanted to capture all the opened windows (can be first level,second level or third level) and place them as a list in main window, in anyway possible.