From 2be70a32d2a8c517bd9868fb60913fcc843e66fe Mon Sep 17 00:00:00 2001 From: 黄学彪 <hxb@hdlchina.com.cn> Date: 星期三, 13 五月 2020 11:21:32 +0800 Subject: [PATCH] 上传代码 --- ZigbeeApp/Shared/Phone/MainPage/ListRoomViewFrom.cs | 40 +++++++++++++++++++++++++++++----------- 1 files changed, 29 insertions(+), 11 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/MainPage/ListRoomViewFrom.cs b/ZigbeeApp/Shared/Phone/MainPage/ListRoomViewFrom.cs index e916bc0..1347cbe 100755 --- a/ZigbeeApp/Shared/Phone/MainPage/ListRoomViewFrom.cs +++ b/ZigbeeApp/Shared/Phone/MainPage/ListRoomViewFrom.cs @@ -1,7 +1,6 @@ 锘縰sing System; using System.Collections.Generic; using Shared.Common; -using Shared.Phone.Device.Category; using Shared.Phone.Device.CommonForm; using Shared.Phone.UserCenter; using Shared.Phone.UserView; @@ -28,7 +27,6 @@ //鍒濆鍖栧乏婊戣彍鍗� roomManagement = new ListRoomViewFrom(); CommonPage.Instance.AddLeftView(roomManagement); - roomManagement.ShowForm(); } return roomManagement; } @@ -38,6 +36,10 @@ /// 鏄惁鍙互瑙﹀彂鐐瑰嚮浜嬩欢--鏄惁鍙互璺宠浆涓婚〉鎴块棿 /// </summary> public bool CanClick = true; + /// <summary> + /// 鏄惁鍒濆鍖栧畬鎴� + /// </summary> + private bool isInitFinish = false; /// <summary> /// 褰撳墠妤煎眰id /// </summary> @@ -59,8 +61,7 @@ /// 鐢婚潰鏄剧ず /// </summary> public void ShowForm() - { - roomManagement = this; + { //鍒濆鍖栧ご閮ㄤ俊鎭� this.InitTopFrame(); //鍒濆鍖栦腑閮ㄦ帶浠� @@ -92,6 +93,7 @@ //鑾峰彇妤煎眰 this.curFloorId = Config.Instance.Home.CurrentFloorId; + var dicFloor = HdlRoomLogic.Current.GetFloorSortList(); if (dicFloor.Count == 0) { @@ -113,7 +115,7 @@ btnIconContr.ButtonClickEvent += (sender, e) => { //妤煎眰鑿滃崟 - var floors = new SelectFloor(); + var floors = new Category.SelectFloorForm(); AddChidren(floors); floors.changeFloor = false; floors.CurFloorId = curFloorId; @@ -122,8 +124,8 @@ { this.curFloorId = floorId; btnFloor.Text = dicFloor[floorId]; - //鍒锋柊鎴块棿鍒楄〃 - this.RefreshListRoom(); + //鍒锋柊Body瀹瑰櫒 + this.RefreshBodyFrame(); }; }; } @@ -137,8 +139,8 @@ listView.Height = bodyFrameLayout.Height; listView.Width = bodyFrameLayout.Width; bodyFrameLayout.AddChidren(listView); - //鍒锋柊鎴块棿鍒楄〃 - this.RefreshListRoom(); + //鍒锋柊Body瀹瑰櫒 + this.RefreshBodyFrame(); } #endregion @@ -150,11 +152,27 @@ /// </summary> public void RefreshListRoom() { + //濡傛灉杩樻病鏈夊垵濮嬪寲瀹屾垚鐣岄潰鐨勮瘽 + if (this.isInitFinish == false) + { + this.ShowForm(); + this.isInitFinish = true; + return; + } //鎶婂ご閮ㄤ篃涓�璧峰垵濮嬪寲浜� this.topFrameLayout.RemoveAll(); //鍒濆鍖栧ご閮ㄤ俊鎭� this.InitTopFrame(); + //鍒锋柊Body瀹瑰櫒 + this.RefreshBodyFrame(); + } + + /// <summary> + /// 鍒锋柊Body瀹瑰櫒 + /// </summary> + private void RefreshBodyFrame() + { //鍏堟竻绌� this.listView.frameTable.RemoveAll(); this.listView.frameTable.Height = Application.GetRealHeight(100); @@ -211,7 +229,7 @@ if (oldFloorId != room.FloorId) { //妤煎眰閮藉垏鎹㈢殑璇�,鍒锋柊鏁翠釜涓婚〉 - UserPage.Instance.Fresh(); + UserPage.Instance.ReFreshControl(); return; } } @@ -237,7 +255,7 @@ private void InitRoomCardControl(int XX, int YY) { //妗屽竷鎺т欢 - var frameBack = new FrameLayoutControl(); + var frameBack = new FrameLayoutStatuControl(); frameBack.X = XX; frameBack.Y = YY; frameBack.Width = this.GetPictrueRealSize(495); -- Gitblit v1.8.0