20 lines
412 B
C#
20 lines
412 B
C#
using System;
|
|
using System.Drawing;
|
|
//忽略没有注释警告
|
|
#pragma warning disable 1591
|
|
namespace MGdu.WinFormUI
|
|
{
|
|
public class ThemeRollingBarFullCircle : GMRollingBarThemeBase
|
|
{
|
|
public ThemeRollingBarFullCircle()
|
|
{
|
|
SpokeNum = 36;
|
|
Radius1 = 16;
|
|
Radius2 = 18;
|
|
PenWidth = 4;
|
|
|
|
BaseColor = Color.DarkGray;
|
|
}
|
|
}
|
|
}
|