0

i am working on application with multiple windows, but i want to drop any window in the application into the main window like tab and can drop it back like window.

i have tried to used drop event in C# and MouseDown event in xaml but didn't work

so any idea how to do that?

  • i have found this answer http://stackoverflow.com/questions/19595618/drop-a-window-into-another-window ....the Answer by @nmaait it work but i can't drop back the tab like window!!! – Khattab Al-dakhil Nov 06 '15 at 08:10

1 Answers1

0

You can't have a child "Window" within a window.

You can have a child user control.

If you still want to have a child window, it would have to appear as a popup

Or you can do a custom implementation like

http://clipflair.codeplex.com/

http://www.c-sharpcorner.com/uploadfile/mahesh/wpf-child-window/

Updated Answer

For docking window you can use third party tools like

Or for a custom implementation you can try these examples

Vivek Saurav
  • 2,235
  • 4
  • 25
  • 46