Robin 5a57b1011c Added DockPanel basics & updated example
Re-adding content currently broken. Need to add tabs too.
2015-09-19 11:32:11 +01:00

16 lines
408 B
C#

namespace DarkUI
{
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;
}
}