16 lines
304 B
C#
16 lines
304 B
C#
namespace Dashboard
|
|
{
|
|
[Flags]
|
|
public enum Anchor
|
|
{
|
|
Auto = 0,
|
|
Right = (1 << 0),
|
|
Left = (1 << 1),
|
|
HCenter = Left | Right,
|
|
Top = (1 << 2),
|
|
Bottom = (1 << 3),
|
|
VCenter = Top | Bottom,
|
|
Middle = HCenter | VCenter,
|
|
}
|
|
}
|