19 lines
477 B
C#
19 lines
477 B
C#
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;
|
|
}
|
|
}
|
|
}
|