SunnyUI/SunnyUI/Frames/UIHeaderMainFrame.cs
2022-01-05 21:57:47 +08:00

35 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/******************************************************************************
* SunnyUI 开源控件库、工具类库、扩展类库、多页面开发框架。
* CopyRight (C) 2012-2022 ShenYongHua(沈永华).
* QQ群56829229 QQ17612584 EMailSunnyUI@QQ.Com
*
* Blog: https://www.cnblogs.com/yhuse
* Gitee: https://gitee.com/yhuse/SunnyUI
* GitHub: https://github.com/yhuse/SunnyUI
*
* SunnyUI.dll can be used for free under the GPL-3.0 license.
* If you use this code, please keep this note.
* 如果您使用此代码,请保留此说明。
******************************************************************************
* 文件名称: UIHeaderMainFrame.cs
* 文件说明: 页面框架(Header-Main)
* 当前版本: V3.1
* 创建日期: 2020-05-05
*
* 2020-05-05: V2.2.5 页面框架(Header-Main)
******************************************************************************/
namespace Sunny.UI
{
public partial class UIHeaderMainFrame : UIMainFrame
{
public UIHeaderMainFrame()
{
InitializeComponent();
Controls.SetChildIndex(MainTabControl, 0);
Header.Parent = this;
MainTabControl.Parent = this;
MainTabControl.BringToFront();
}
}
}