tabbed-document-interface

Dockable Form

此生再无相见时 提交于 2019-12-06 06:17:16
问题 How do you create a "dockable" form, similar to the windows in Visual Studio? 回答1: Any custom control (composite, not inherited) in winforms can be docked, because it's really just a panel underneath. Combine this with a tablelayout panel for the high-level layout of your form and you have all the pieces. But you still have to implement all the glue and supporting UI yourself. 回答2: I've used Weifen Luo's "DockPanel Suite" to good effect. It's an open source library that mimics Visual Studio's

Dockable Form

依然范特西╮ 提交于 2019-12-04 10:47:35
How do you create a "dockable" form, similar to the windows in Visual Studio? Any custom control (composite, not inherited) in winforms can be docked, because it's really just a panel underneath. Combine this with a tablelayout panel for the high-level layout of your form and you have all the pieces. But you still have to implement all the glue and supporting UI yourself. I've used Weifen Luo's "DockPanel Suite" to good effect. It's an open source library that mimics Visual Studio's docking system very well, including nested docking, floating windows, tabbed windows, etc. You can download his

tabbed document interface in WPF using only on-board means?

穿精又带淫゛_ 提交于 2019-12-01 05:45:35
I've seen two threads here about TDI & C#. Both of them didn't really answer the questions I have ... Since TDIs are pretty much like a standard nowadays, I can hardly imagine, that I have to buy a special control (like AvalonDock or SandDock). This must be possible with built in the tab-control(?) somehow! I don't need special features like dock- and draggable tabitems. Just open every form in a new tab. Thats it. Like putting every forms content controls into user controls and by request (button, menu click ...) add a new tab and put the corresponding user control on it ... something like

tabbed document interface in WPF using only on-board means?

爷,独闯天下 提交于 2019-12-01 04:14:24
问题 I've seen two threads here about TDI & C#. Both of them didn't really answer the questions I have ... Since TDIs are pretty much like a standard nowadays, I can hardly imagine, that I have to buy a special control (like AvalonDock or SandDock). This must be possible with built in the tab-control(?) somehow! I don't need special features like dock- and draggable tabitems. Just open every form in a new tab. Thats it. Like putting every forms content controls into user controls and by request