15 lines
292 B
C#
15 lines
292 B
C#
|
namespace Dashboard
|
||
|
{
|
||
|
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,
|
||
|
}
|
||
|
}
|