ovuse
Version:
WPF-inspired Web UI framework
46 lines (45 loc) • 946 B
TypeScript
export declare enum FrameworkPropertyMetadataOptions {
None = 0,
AffectsMeasure = 1,
AffectsArrange = 2,
AffectsParentMeasure = 4,
AffectsParentArrange = 8,
AffectsRender = 16,
Inherits = 32,
OverridesInheritanceBehavior = 64,
NotDataBindable = 128,
BindsTwoWayByDefault = 256,
}
export declare enum HorizontalAlignment {
Left = 0,
Center = 1,
Right = 2,
Stretch = 3,
}
export declare enum VerticalAlignment {
Top = 0,
Center = 1,
Bottom = 2,
Stretch = 3,
}
export declare enum SizeToContent {
None = 0,
Both = 1,
Vertical = 2,
Horizontal = 3,
}
export declare enum PopupPosition {
Center = 0,
Left = 1,
LeftTop = 2,
LeftBottom = 3,
Top = 4,
TopLeft = 5,
TopRight = 6,
Right = 7,
RightTop = 8,
RightBottom = 9,
Bottom = 10,
BottomLeft = 11,
BottomRight = 12,
}