14 lines
251 B
C#
14 lines
251 B
C#
namespace CPF.Mac.AppKit
|
|
{
|
|
public enum NSLayoutPriority
|
|
{
|
|
Required = 1000,
|
|
DefaultHigh = 750,
|
|
DragThatCanResizeWindow = 510,
|
|
WindowSizeStayPut = 500,
|
|
DragThatCannotResizeWindow = 490,
|
|
DefaultLow = 250,
|
|
FittingSizeCompression = 50
|
|
}
|
|
}
|