Files
2026-02-21 16:45:37 +08:00

14 lines
164 B
C#

using System;
namespace EasyLayout
{
[Flags]
public enum ChildrenSize
{
DoNothing = 0,
SetPreferred = 1,
SetMaxFromPreferred = 2,
FitContainer = 3
}
}