mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
21 lines
559 B
C#
21 lines
559 B
C#
|
namespace MLEM.Ui {
|
||
|
public enum Anchor {
|
||
|
|
||
|
TopLeft,
|
||
|
TopCenter,
|
||
|
TopRight,
|
||
|
CenterLeft,
|
||
|
Center,
|
||
|
CenterRight,
|
||
|
BottomLeft,
|
||
|
BottomCenter,
|
||
|
BottomRight,
|
||
|
|
||
|
AutoLeft, // below older sibling, aligned to the left
|
||
|
AutoCenter, // below older sibling, aligned to the center
|
||
|
AutoRight, //below older sibling, aligned to the right
|
||
|
AutoInline, // right of older sibling or below if overflows
|
||
|
AutoInlineIgnoreOverflow // right of older sibling at all time
|
||
|
|
||
|
}
|
||
|
}
|