16 lines
343 B
C#
16 lines
343 B
C#
|
|
namespace WeifenLuo.WinFormsUI.Docking
|
||
|
|
{
|
||
|
|
public class Measures
|
||
|
|
{
|
||
|
|
public int SplitterSize = 4;
|
||
|
|
public int AutoHideSplitterSize = 4;
|
||
|
|
public int AutoHideTabLineWidth = 6;
|
||
|
|
public int DockPadding { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
internal static class MeasurePane
|
||
|
|
{
|
||
|
|
public const int MinSize = 24;
|
||
|
|
}
|
||
|
|
}
|