RaUI/Source/ryControls/Gdu.WinFormUI/Theme/ScrollBar/ThemeScrollbarEllipse.cs

17 lines
423 B
C#
Raw Normal View History

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