tags:

views:

43

answers:

3

I have two Window (name: window1 \ window2) whether it is possible to insert them in another Window (window3). What would have once been seen window1 \ window2, buyout lie window3?

+1  A: 

No, not possible. But if you separate the content of the windows out into separate UserControls, then it is easy to include those UserControls inside another Window.

HTH,
Kent

Kent Boogaart
Theanks, I thought that it is possible that there are Frames
simply denis
A: 

As Kent said u cant do it, use UserControl but u can use Wpf Ribbon witch recently released by microsoft. (i have a security problem and i cant refer to microsoft download page, but i think release done in 4 august, u can google it and use it very easyly).

SaeedAlg
A: 

You can use a Frame. Then load a UserControl or Page into the frame. You cannot put a Window within the Frame however.

The benefit of use a Page is that you gain access to the NavigationService. NavigationService gives you a forward and back stack history of the pages your user visits. Here's another thread discussing a similar question.

Walt Ritscher