------ #### VSoft V1.0.2102.2801 - *.[新增]项目支持毕方3.0标准。 - *.[新增]项目新增支持条件编译,可以自由根据条件编译成公司项目或工作室项目。 - *.[改进]对话框弹出默认在父窗体中间。
44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
using MGdu.WinFormUI;
|
|
using MGdu.WinFormUI.MyGraphics;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace VSoft.Skins
|
|
{
|
|
public class ThemeForm : ThemeFormBase
|
|
{
|
|
/// <summary>
|
|
/// DevExpress风格皮肤
|
|
/// </summary>
|
|
public ThemeForm()
|
|
: base()
|
|
{
|
|
ThemeName = "Default";
|
|
ryControls.Skin.SkinCommon.ButtonSkin.BackColor = Color.Teal;
|
|
ryControls.Skin.SkinCommon.ButtonSkin.ColorGradient = true;
|
|
BorderWidth = 1;
|
|
CaptionHeight = 30;
|
|
IconSize = new Size(24, 24);
|
|
//ControlBoxOffset = new Point(8, 8);
|
|
//ControlBoxSpace = 2;
|
|
SideResizeWidth = 4;
|
|
UseDefaultTopRoundingFormRegion = false;
|
|
|
|
CaptionBackColorBottom = Color.Teal;
|
|
CaptionBackColorTop = Color.LightSeaGreen;
|
|
|
|
RoundedStyle = RoundStyle.None;
|
|
FormBorderOutterColor = Color.Gray;
|
|
FormBorderInnerColor = Color.White;
|
|
SetClientInset = false;
|
|
ShowShadow = false;
|
|
CaptionTextCenter = false;
|
|
//CaptionTextColor = Color.FromArgb(102, 102, 102);
|
|
//FormBackColor = Color.White;
|
|
}
|
|
}
|
|
}
|