14 lines
164 B
C#
14 lines
164 B
C#
using System;
|
|
|
|
namespace EasyLayout
|
|
{
|
|
[Flags]
|
|
public enum ChildrenSize
|
|
{
|
|
DoNothing = 0,
|
|
SetPreferred = 1,
|
|
SetMaxFromPreferred = 2,
|
|
FitContainer = 3
|
|
}
|
|
}
|