tags:

views:

40

answers:

2

We have an application developed in WPF. i wanted to implement one functionality here. From main page, Main page has quick links to all child windows. if i open 20 windows, i wanted to see all the opened windows listed on mainpage. My main page is blank now so i can show in any way possible. Does WPF has this functionality??? please help

+1  A: 

Look at Application.Current.Windows. You can enumerate and show them in your main-window.

HCL
+1  A: 

Keep them all in an ObservableCollection<Window>, then use a ListView or such to display them. Style your ItemTemplate at wish.

Martin