gxc
2020-02-28 66a9965c44ecc32a6696abca876ab9d1cd091584
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,16 +54,21 @@
        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()
                {
                    Height = Application.GetRealHeight(161),
                    Height = Application.GetRealHeight(150),
                };
                bodyView.AddChidren(RowView);
@@ -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);