CPF/CPF.Mac/Mac/AppKit/NSLayoutPriority.cs
2023-11-21 23:05:03 +08:00

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
}
}