RaUI/Source/ryControls/Gdu.WinFormUI/Theme/RollingBar/ThemeRollingBarChromeGreen.cs

19 lines
477 B
C#
Raw Normal View History

using System;
//忽略没有注释警告
#pragma warning disable 1591
namespace MGdu.WinFormUI
{
/// <summary>
/// this theme is just for chrome one quarter style
/// </summary>
public class ThemeRollingBarChromeGreen : GMRollingBarThemeBase
{
public ThemeRollingBarChromeGreen()
{
Radius1 = 14;
BaseColor = System.Drawing.Color.LightSeaGreen;
BackColor = System.Drawing.Color.White;
}
}
}