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

19 lines
240 B
C#

using System;
namespace EasyLayout
{
[Flags]
public enum Anchors
{
UpperLeft = 0,
UpperCenter = 1,
UpperRight = 2,
MiddleLeft = 3,
MiddleCenter = 4,
MiddleRight = 5,
LowerLeft = 6,
LowerCenter = 7,
LowerRight = 8
}
}