mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-03 23:59:26 +03:00
16 lines
415 B
C#
16 lines
415 B
C#
namespace DarkUI.Config
|
|
{
|
|
public sealed class Consts
|
|
{
|
|
public static int Padding = 10;
|
|
|
|
public static int ScrollBarSize = 15;
|
|
public static int ArrowButtonSize = 15;
|
|
public static int MinimumThumbSize = 11;
|
|
|
|
public const int ToolWindowHeaderSize = 25;
|
|
public const int DocumentTabAreaSize = 24;
|
|
public const int ToolWindowTabAreaSize = 21;
|
|
}
|
|
}
|