using System; using HDL_ON.UI.CSS; using Shared; namespace HDL_ON.UI { public class ChooseFloorPage : FrameLayout { #region 控件列表 FrameLayout bodyView; /// /// 内容加载区域 /// FrameLayout contentView; #endregion #region 局部变量 #endregion public ChooseFloorPage() { bodyView = this; } public void LoadPage() { bodyView.BackgroundColor = CSS_Color.BackgroundColor; new TopViewDiv(bodyView, Language.StringByID(StringId.LocationManagement)).LoadTopView(); contentView = new FrameLayout() { Y = Application.GetRealHeight(64), Height = Application.GetRealHeight(667 - 64), }; bodyView.AddChidren(contentView); } } }