문제

In Visual Studio, we can add various panels like SolutionExplorer Panel, Properties Panel,etc. Also we can minimize these panels and maximize these panels.

I want to design a dockpanel similar to what I have mentioned in WPF. ( I should be able to pin the panel, unpin the panel, etc)

Does DockPanel support this by default? Or should I do something to support this feature. A sample illustration of code will be great!!!

도움이 되었습니까?

해결책

DockPanel is just a common Panel for arranging elements around the edges of the container with the option of having the last element fill the remaining space. It does not do any sort of VS type docking/undocking/pinning/unpinning. For something like that you would need a custom control. You could try a free one like AvalonDock or purchase ones like Infragistics XamDockManager or from the other component vendors.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top