29 lines
764 B
C#
29 lines
764 B
C#
using System;
|
|
using System.Drawing;
|
|
//忽略没有注释警告
|
|
#pragma warning disable 1591
|
|
namespace MGdu.WinFormUI
|
|
{
|
|
public class GMRollingBarThemeBase
|
|
{
|
|
public int Radius1 { get; set; }
|
|
public int Radius2 { get; set; }
|
|
public int SpokeNum { get; set; }
|
|
public float PenWidth { get; set; }
|
|
public Color BackColor { get; set; }
|
|
public Color BaseColor { get; set; }
|
|
public Color DiamondColor { get; set; }
|
|
|
|
public GMRollingBarThemeBase()
|
|
{
|
|
Radius1 = 10;
|
|
Radius2 = 24;
|
|
SpokeNum = 12;
|
|
PenWidth = 2;
|
|
BackColor = Color.Transparent;
|
|
BaseColor = Color.Red;
|
|
DiamondColor = Color.White;
|
|
}
|
|
}
|
|
}
|