20 lines
460 B
C#
20 lines
460 B
C#
|
|
using System;
|
|||
|
|
using System.Drawing;
|
|||
|
|
//忽略没有注释警告
|
|||
|
|
#pragma warning disable 1591
|
|||
|
|
namespace MGdu.WinFormUI
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// for diamond ring style only
|
|||
|
|
/// </summary>
|
|||
|
|
public class ThemeRollingBarRing : GMRollingBarThemeBase
|
|||
|
|
{
|
|||
|
|
public ThemeRollingBarRing()
|
|||
|
|
{
|
|||
|
|
Radius1 = 18;
|
|||
|
|
BaseColor = Color.Gold;
|
|||
|
|
DiamondColor = Color.FromArgb(160, Color.Red);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|