From b9cb076fe6127160c96c35bf9c8cebcffe1d5ccd Mon Sep 17 00:00:00 2001 From: gxc <guoxuecheng@guoxuechengdeMacBook-Pro.local> Date: 星期五, 10 一月 2020 17:35:23 +0800 Subject: [PATCH] 2020.1.10 --- ZigbeeApp/Shared/Phone/UserCenter/DoorLock/MemberManagement.cs | 27 +++++++++++++++++++++++---- 1 files changed, 23 insertions(+), 4 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/DoorLock/MemberManagement.cs b/ZigbeeApp/Shared/Phone/UserCenter/DoorLock/MemberManagement.cs index f0de9bc..7016ce3 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/DoorLock/MemberManagement.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/DoorLock/MemberManagement.cs @@ -19,6 +19,21 @@ #endregion + void ReadDoorLockUserInfo() + { + System.Threading.Tasks.Task.Run(async () => + { + try + { + var list = await Shared.Phone.UserCenter.DoorLock.DoorLockCommonInfo.GetDoorLockAllAcountUserlist(doorLock); + } + catch { } + finally + { + } + }); + } + /// <summary> /// UI鏄剧ず /// </summary> @@ -39,11 +54,16 @@ public void MidFrameLayoutContent() { - var bodyView = new VerticalScrolViewLayout() + var bodyView = new VerticalRefreshLayout() { }; this.midFrameLayout.AddChidren(bodyView); - + bodyView.BeginHeaderRefreshingAction += () => + { + bodyView.BeginHeaderRefreshing(); + ReadDoorLockUserInfo(); + bodyView.EndHeaderRefreshing(); + }; for (int i = 0; i < 3; i++) { var RowView = new FrameLayout() @@ -61,7 +81,6 @@ TextColor = Shared.Common.ZigbeeColor.Current.XMBlack, TextAlignment = TextAlignment.CenterLeft, TextSize = 14, - Text = "Krafty", }; RowView.AddChidren(btnMemberName); @@ -71,7 +90,7 @@ Y = Application.GetRealHeight(58), Height = Application.GetRealHeight(58), Width = Application.GetRealWidth(58), - UnSelectedImagePath = "Item/Next.png", + UnSelectedImagePath = "Item/RightNext.png", SelectedImagePath = "Item/Down.png", }; RowView.AddChidren(btnRight); -- Gitblit v1.8.0