17 lines
423 B
C#
17 lines
423 B
C#
using System;
|
|
//忽略没有注释警告
|
|
#pragma warning disable 1591
|
|
namespace MGdu.WinFormUI
|
|
{
|
|
public class ThemeScrollbarEllipse : GMScrollBarThemeBase
|
|
{
|
|
public ThemeScrollbarEllipse()
|
|
{
|
|
SideButtonBorderType = ButtonBorderType.Ellipse;
|
|
MiddleButtonOutterSpace2 = 1;
|
|
MiddleButtonRadius = 12;
|
|
SideButtonLength = BestUndirectLen;
|
|
}
|
|
}
|
|
}
|