AvalonDock dock a window

前端 未结 1 718
不知归路
不知归路 2021-01-22 08:34

I am trying to convert my app in WPF to work with AvalonDock. I have a few windows(about 10) and main form that has DockingManager. I would like to put

相关标签:
1条回答
  • 2021-01-22 08:59

    I dont think you can add a window in side another window. Try to change window as Page.

    change

    <Window ... >
    
    ...
    
    </Window>
    

    to

    <Page ... >
    
    ...
    
    </Page>
    

    For all windows you wanted to add as child.

    0 讨论(0)
提交回复
热议问题