zoukankan      html  css  js  c++  java
  • [转]仿微软VS.Net多选项卡的窗体布局控件

    http://www.codeproject.com/KB/vb/DockPanelSkin.aspx

    Apply a theme that resembles Visual Studio 2005 to the DockPanel Suite, using an Extender class.
    Sample Image - DockPanelSkin.png

    Overview

    It's now been awhile since programs like Opera, Firefox and other software introduced MDI tabbed interfaces. Unluckily, there are not too many free components that allow .NET developers to create such interfaces. I was searching the internet for a long time before discovering the DockPanel Suite, a wonderful and fully customizable component from Weifen Luo. This component is available on Sourceforge, here.

    Introduction

    This article shows how the DockPanel component can be customized, implementing an Extender class. The attached example creates a Visual Studio 2005 like interface against version 1.0 of the DockPanel.

    Copyright

    Weifen Luo is the owner of the copyright for the DockPanel Suite, which includes the Extender class, the object of this article.

    Background

    This article is based around the DockPanel Suite library and it requires at least a basic knowledge of this. Please refer to the References paragraph to find more information about it. A good knowledge of the System.Drawing classes and functions is also required.

    The Extender Class

    DockPanel accepts customizations through five classes:

    • AutoHideTab represents a single tab used when the content is in the autohide state.
    • AutoHideStrip draws tabstrips and tabs when the content is in the autohide state.
    • DockPaneCaption draws the caption pane when the contents are tool windows.
    • DockPaneTab represent a single tab used when the content is a document window or a tool window.
    • DockPaneStrip draws tabstrips and tabs when the content is a document window or a tool window.

    For convenience, these classes are enclosed in an Extender class. The following sections describe the component parts and the relative modules you can customize.

    AutoHideStrip and AutoHideTab

    The autohide strips can appear at the four borders of the main form and they are activated by the MouseOver event. The tabstrip will be visible only if at least one content is in the autohide state. When the tabs are docked to the left or to the right, the resulting tabs are rotated 90 degrees.

    Following is a screenshot of a form docked to the top:

    Here is another example of a form docked to the bottom:

    The drawing of tabstrips and tabs is done by the class AutoHideStripFromBase. The painting methods are mainly the following:

    • OnPaint handles the OnPaint event of the control.
    • DrawTabStrip draws the tabstrips with a right orientation and all the contained tabs.
    • DrawTab draws a single tab.

    DockPaneCaption

    DockPaneCaption represents the form border when the form is docked and it normally contains a title, a button to close the window and a button to set the window to the autohide state. The Visual Studio 2005 like interface also contains a button to manipulate the window state through a context menu.

    The following is a screenshot of DockPaneCaption:

    The drawing of the caption is done by the class DockPaneCaptionFromBase. The painting methods are mainly the following:

    • OnPaint handles the OnPaint event of the control.
    • DrawCaption draws the background and the caption text.

    DockPaneStrip and DockPaneTab

    DockPaneStrip represents the tab area shown when the content is a tool window or a document. There are many differences between these two regarding the tab shape and other behaviour. An example is hiding the tabstrip in the case of a single content. The drawing of tabstrips and tabs is done by the class DockPaneStripFromBase. The following examples will clarify these differences.

    Example of a tabstrip that shows document tabs:

    Example of a tabstrip that shows document tabs with an icon and the overflow symbol:

    Example of a tabstrip that shows tool window tabs:

    The painting methods for the document tabstrip are the following:

    • OnPaint handles the OnPaint event of the control.
    • DrawTabStrip_Document draws the background.
    • DrawTab_Document draws the shape, icon and text.

    The painting methods for the tool window tabstrip are the following:

    • OnPaint handles the OnPaint event of the control.
    • DrawTabStrip_ToolWindow draws the background.
    • DrawTab_ToolWindow draws the shape, icon, and text.

    Using the Code

    To apply the Extender to an instance of DockPanel, insert the following code into the Form_Load event of your form, replacing the name of the control with yours.

    Collapse | Copy Code
    Extender.SetSchema(DockPanel1, Extender.Schema.FromBase)

    Final Notes

    I hope that you find this article useful. If you find this article stupid, annoying or incorrect, express this fact by rating the article as you see fit. In the end, you're very welcome at any moment to freely contribute to this project by suggesting improvements or by submitting code or other materials.

    Credits

    Thanks to Weifen Luo for providing the community with the DockPanel component. If you like this component, you may want to make a donation to Weifen Luo here.

    References

    History

    • 3rd June 2006: first submission
    • 20th July 2006: bug fix (the MdiParent property doesn't need to be set)
    • 20nd January 2007: updated download

    License

    This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

    作者: 火地晋
    出处: http://yelaiju.cnblogs.com
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    2019 年值得关注的 23 个开发者博客
    牛津词典 2018 年度词汇 ——「有毒」!
    17 个关于雪花的有趣事实🌨❄️❄️❄️
    Google 里的软件工程学
    作为软件工程师,如何进行知识管理
    x == (x = y) 不等于 (x = y) == x ?
    Docker-compose编排微服务顺序启动
    Ubuntu 20.04 修改字体、调整缩放
    How To Upgrade Ubuntu To 20.10
    写给工程师的 Ubuntu 20.04 最佳配置指南
  • 原文地址:https://www.cnblogs.com/yelaiju/p/1869530.html
Copyright © 2011-2022 走看看