SimpleWindow
载入中...
搜索中...
未找到
Alignment.h
1#pragma once
2
3namespace sw
4{
8 enum class HorizontalAlignment {
9 Center,
10 Stretch,
11 Left,
12 Right,
13 };
14
18 enum class VerticalAlignment {
19 Center,
20 Stretch,
21 Top,
22 Bottom,
23 };
24
28 enum class Orientation {
30 Vertical,
31 };
32}
SimpleWindow框架的顶级命名空间,所有公共类型、控件、枚举和工具函数均定义于此。
Definition Alignment.h:4
VerticalAlignment
垂直对齐方式
Definition Alignment.h:18
@ Bottom
底部对齐
HorizontalAlignment
水平对齐方式
Definition Alignment.h:8
Orientation
排列方式
Definition Alignment.h:28
@ Vertical
垂直排列
@ Horizontal
水平排列