20 lines
417 B
C#
20 lines
417 B
C#
using System;
|
|
using System.Drawing;
|
|
//忽略没有注释警告
|
|
#pragma warning disable 1591
|
|
namespace MGdu.WinFormUI
|
|
{
|
|
public class ThemeRollingBarCircleDots : GMRollingBarThemeBase
|
|
{
|
|
public ThemeRollingBarCircleDots()
|
|
{
|
|
Radius1 = 12;
|
|
Radius2 = 14;
|
|
PenWidth = 4f;
|
|
SpokeNum = 9;
|
|
|
|
BaseColor = Color.LightSeaGreen;
|
|
}
|
|
}
|
|
}
|