1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| using System;
| using HDL_ON.UI.CSS;
| using Shared;
|
| namespace HDL_ON.UI
| {
| public class ChooseFloorPage : FrameLayout
| {
| #region 控件列表
| FrameLayout bodyView;
| /// <summary>
| /// 内容加载区域
| /// </summary>
| FrameLayout contentView;
| #endregion
|
| #region 局部变量
| #endregion
|
|
| public ChooseFloorPage()
| {
| bodyView = this;
|
| }
|
| public void LoadPage()
| {
| bodyView.BackgroundColor = CSS_Color.BackgroundColor;
| new PublicAssmebly().LoadTopView(bodyView, Language.StringByID(StringId.LocationManagement));
|
| contentView = new FrameLayout()
| {
| Y = Application.GetRealHeight(64),
| Height = Application.GetRealHeight(667 - 64),
| };
| bodyView.AddChidren(contentView);
|
|
| }
| }
| }
|
|