如何在Form中添加小窗口
Possible Duplicate:
Dockable autohiding panel control for Windows Forms
I have a problem. I don't know how to make "small window" in a Form. I mark them on the picture. They are panels or what? How to add close, minimize etc. Buttons to them and allow to move them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看这个第三方对接面板控件。 ( http://sourceforge.net/projects/dockpanelsuite/ )
您使用它来创建 DockingWindow 类型表单然后它可以自动停靠/填充/浮动在具有停靠容器的主窗体上。然后,该停靠容器内所有停靠窗口的布局都可以很好地序列化为 XML,可以根据需要进行存储,以便稍后重新加载表单。
Check out this third party Docking Panel control. ( http://sourceforge.net/projects/dockpanelsuite/ )
You use it to create DockingWindow type forms which can then automatically dock/fill/float on your main form which has a docking container. The layout of all docked windows within that docking container then serialise nicely to XML which can be stored however you need, in order to reload the form later.
这些被称为 Dock 面板..并且不存在于 BCL 中。您必须找到第三方组件开发商或自己制作一些。
Those are called Dock Panels.. and do not exist in the BCL. You will have to find a 3rd party component developer or make some yourself.