RaUI/Source/ryControls/Gdu.WinFormUI/Theme/Form/ThemeFormDevExpress.cs
如果当时 34a3ef3ed9 ### 2021-02-22更新
------
#### ryControls    V2.1.2102.2201
*.[新增]新加入Gdu.WinformUI控件。
2021-02-22 21:42:59 +08:00

44 lines
1.1 KiB
C#

using System;
using System.Drawing;
using MGdu.WinFormUI.MyGraphics;
namespace MGdu.WinFormUI
{
/// <summary>
/// DevExpress风格皮肤
/// </summary>
public class ThemeFormDevExpress : ThemeFormBase
{
/// <summary>
/// DevExpress风格皮肤
/// </summary>
public ThemeFormDevExpress()
: base()
{
ThemeName = "DevExpress Default";
BorderWidth = 2;
CaptionHeight = 30;
IconSize = new Size(16, 16);
ControlBoxOffset = new Point(8, 8);
ControlBoxSpace = 2;
SideResizeWidth = 4;
UseDefaultTopRoundingFormRegion = false;
CaptionBackColorBottom = Color.White;
CaptionBackColorTop = Color.White;
RoundedStyle = RoundStyle.None;
FormBorderOutterColor = Color.FromArgb(0, 144, 198);
FormBorderInnerColor = Color.White;
SetClientInset = false;
CaptionTextCenter = true;
CaptionTextColor = Color.FromArgb(102, 102, 102);
FormBackColor = Color.White;
}
}
}