陈嘉乐
2020-09-02 652243206427f35a256400a149a1734085824cb9
ZigbeeApp/Shared/Phone/Device/Logic/MemberList.cs
old mode 100644 new mode 100755
@@ -9,16 +9,255 @@
{
    public class MemberList : FrameLayout
    {
        Button selectedIcon = new Button();
        public static Action action;
        public static bool edit=false;
        Dictionary<string, string> deviceConditionsInfo = new Dictionary<string, string>();
        Dictionary<string, string> userdictionary = new Dictionary<string, string>();
        public void Show(CommonDevice common, Dictionary<string, string> editdeviceConditionsInfo=null)
        public MemberList()
        {
            if (!edit)
            Tag = "Logic";
        }
        Button selectedIcon = new Button();
        public static bool edit = false;
        VerticalRefreshLayout middle;
        CommonDevice common;
        Dictionary<string, string> editdeviceConditionsInfo;
        public void Show(CommonDevice commondevice, Dictionary<string, string> editdeviceConditions = null)
        {
            common = commondevice;
            editdeviceConditionsInfo = editdeviceConditions;
            #region  界面布局代码
            UserView.HomePage.Instance.ScrollEnabled = false;
            this.BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor;
            TopView view = new TopView();
            this.AddChidren(view.TopRowView());
            view.toptitleNameBtn.TextID = MyInternationalizationString.userlist;
            view.clickBtn.MouseDownEventHandler += (sender, e) => { RemoveFromParent(); };
            middle = new VerticalRefreshLayout
            {
                Y = view.topRowLayout.Bottom,
                Height = Application.GetRealHeight(Method.H - 184),
                BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor,
            };
            this.AddChidren(middle);
            #endregion
            middle.BeginHeaderRefreshingAction += () =>
            {
                //重新刷新logic列表
                string macport = common.DeviceAddr + "_" + common.DeviceEpoint.ToString();
                for (int i = 0; i < Send.LockList.Count; i++)
                {
                    if (Send.LockList[i].DoorLockMacPort == macport)
                    {
                        ///从列表移除当前门锁全部的旧数据;
                        Send.LockList.Remove(Send.LockList[i]);
                        i--;
                    }
                }
                Read();
                //关闭刷新View;
                middle.EndHeaderRefreshing();
            };
            Read();
        }
        /// <summary>
        /// 读取当前门锁的云端数据;
        /// </summary>
        public void Read()
        {
            bool d = false;
            string macport = common.DeviceAddr + "_" + common.DeviceEpoint.ToString();
            for (int i = 0; i < Send.LockList.Count; i++)
            {
                if (Send.LockList[i].DoorLockMacPort == macport)
                {
                    ///已经存在该门锁信息
                    d = true;
                    break;
                }
            }
            CommonPage.Loading.Start();
            middle.RemoveAll();
            System.Threading.Tasks.Task.Run(async () =>
           {
               try
               {
                   if (!d)
                   {
                       var allMemberslist = await Send.AllMembers(macport);
                       Send.LockList.AddRange(allMemberslist);
                   }
               }
               catch { }
               finally
               {
                   Application.RunOnMainThread(() =>
                   {
                       CommonPage.Loading.Hide();
                       UserList(macport);
                   });
               }
           });
        }
        /// <summary>
        /// 成员列表的方法
        /// </summary>
        /// <param name="macport"></param>
        public void UserList(string macport)
        {
            for (int i=0;i<Send.LockList.Count;i++)
            {
                var user = Send.LockList[i];
                if (user.DoorLockMacPort != macport)
                {
                    continue;
                }
                FunView userView = new FunView();
                userView.iconBtn.Visible = false;
                userView.funnameBtn.X = Application.GetRealWidth(81);
                userView.funnameBtn.Text = user.UserName;
                userView.funnextBtn.X = Application.GetRealWidth(1080 - 81 - 58);
                userView.lineBtn.X = Application.GetRealWidth(81);
                userView.lineBtn.Width = Application.GetRealWidth(1080 - 81 - 58);
                if (Send.LockList.Count - 1 == i)
                {
                    userView.funFrameLayout.Height = Application.GetRealHeight(160 + 20);//最后一行增加20高度;
                    userView.lineBtn.BackgroundColor = ZigbeeColor.Current.LogicBlankBackgroundColor;
                }
                middle.AddChidren(userView.FunFrameView());
                userView.clickviewBtn.MouseUpEventHandler += (sender, e) =>
                 {
                     User(user);
                 };
            }
        }
        /// <summary>
        /// 当前成员信息的方法
        /// </summary>
        /// <param name="user"></param>
        public void User(Send.MembershipIfon user)
        {
            int count = user.UserIdMode.Count;
            #region  -------取消   完成
            var flMain = new FrameLayout { BackgroundColor = ZigbeeColor.Current.LogicTranslucentColor };
            this.AddChidren(flMain);
            CompleteView completeView = new CompleteView();
            flMain.AddChidren(completeView.Show(count));
            completeView.Btntitle.Text = user.UserName;
            EventHandler<MouseEventArgs> clickcancel = (sender, e) =>
            {
                UserView.HomePage.Instance.ScrollEnabled = true;
                flMain.RemoveFromParent();
            };
            flMain.MouseUpEventHandler += clickcancel;
            completeView.Btncancel.MouseUpEventHandler += clickcancel;
            //元素超出9个就用上下滑动控件;
            VerticalScrolViewLayout vV = null;
            if (count > 9)
            {
                ///元素超出9个;
                count = 6;
                //元素超出9个就用上下滑动控件;
                vV = new VerticalScrolViewLayout
                {
                    Y = Application.GetRealHeight(140 + 20),
                    Height = Application.GetRealHeight(160 * count),
                };
                //元素超出9个就用上下滑动控件;
                completeView.Show(count).AddChidren(vV);
                //清除之前的控件;
                vV.RemoveAll();
            }
            #endregion
            ///定两个变量记录之前的只值;
            string userId = "";
            string openMode = "";
            string accountName = "";
            string SelectedDeviceStatuscondition = "";
            for (int i = 0; i < user.UserIdMode.Count; i++)
            {
                var userifon = user.UserIdMode[i];
                mFunView lockView = new mFunView();
                if (user.UserIdMode.Count > 9)
                {
                    vV.AddChidren(lockView.Show());
                }
                else
                {
                    lockView.frameLayout.Y = Application.GetRealHeight(140 + 20 + 160 * i);
                    completeView.Show(count).AddChidren(lockView.Show());
                }
                lockView.titleBtn.Text = userifon.ModeName;
                if ((user.UserIdMode.Count - 1) == i)
                {
                    lockView.lineBtn.BackgroundColor = ZigbeeColor.Current.LogicBackgroundColor;
                }
                lockView.clickviewBtn.MouseUpEventHandler += (sender, e) =>
                 {
                     SelectedDeviceStatuscondition = "DoorLock";
                     selectedIcon.Visible = false;
                     selectedIcon = lockView.selectedIconBtn;
                     lockView.selectedIconBtn.Visible = true;
                     userId = userifon.UserId;
                     openMode = userifon.OpenMode.ToString();
                     accountName = completeView.Btntitle.Text + lockView.titleBtn.Text;
                 };
                if (string.IsNullOrEmpty(lockView.titleBtn.Text))
                {
                    string strname = "";
                    switch (userifon.OpenMode)
                    {
                        case 0:
                            {
                                strname = Language.StringByID(MyInternationalizationString.lockpassword);
                            }
                            break;
                        case 3:
                            {
                                strname = Language.StringByID(MyInternationalizationString.ic);
                            }
                            break;
                        case 15:
                            {
                                strname = Language.StringByID(MyInternationalizationString.fingerprint);
                            }
                            break;
                    }
                    lockView.titleBtn.Text = userifon.UserId + strname;
                }
                if (edit && editdeviceConditionsInfo != null)
                {
                    if (editdeviceConditionsInfo["AttriButeData2"] == userifon.UserId.ToString())
                    {
                        selectedIcon.Visible = false;
                        selectedIcon = lockView.selectedIconBtn;
                        lockView.selectedIconBtn.Visible = true;
                    }
                }
            }
            completeView.Btncomplete.MouseUpEventHandler += (sender, e) =>
            {
                string userIdstr = "", openModestr = "";
                var deviceConditionsInfo = new Dictionary<string, string>();
                var userdictionary = new Dictionary<string, string>();
                deviceConditionsInfo.Add("Type", "1");
                deviceConditionsInfo.Add("IsValid", "1");
                deviceConditionsInfo.Add("MacAddr", common.DeviceAddr);
@@ -26,364 +265,85 @@
                deviceConditionsInfo.Add("Cluster_ID", "64529");
                deviceConditionsInfo.Add("AttriButeData1", "2");
                deviceConditionsInfo.Add("Range", "0");
                editdeviceConditionsInfo = deviceConditionsInfo;
            }
            UserView.HomePage.Instance.ScrollEnabled = false;
            this.BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor;
            #region  最上面的布局代码
            var topRowLayout = new RowLayout
            {
                BackgroundColor = ZigbeeColor.Current.LogicTopBackgroundColor,
                Height = Application.GetRealHeight(184),
                LineColor = ZigbeeColor.Current.LogicRowLayoutTopLineColor,
            };
            this.AddChidren(topRowLayout);
            var titleName = new Button
            {
                TextSize = 16,
                TextColor = ZigbeeColor.Current.LogicTextBlackColor,
                TextAlignment = TextAlignment.CenterLeft,
                X = Application.GetRealWidth(176),
                Width = Application.GetRealWidth(400),
                Height = Application.GetRealHeight(69),
                Y = Application.GetRealHeight(92),
                TextID = MyInternationalizationString.userlist,
            };
            topRowLayout.AddChidren(titleName);
            var clickBtn = new Button
            {
                Width = Application.GetRealWidth(81 + 51),
                Height = Application.GetRealHeight(58 + 40),
                Y = Application.GetRealHeight(98 - 40),
            };
            topRowLayout.AddChidren(clickBtn);
            clickBtn.MouseDownEventHandler += (sender, e) =>
            {
                RemoveFromParent();
                action();
            };
            var back = new Button
            {
                Width = Application.GetRealWidth(30),
                Height = Application.GetRealHeight(51),
                X = Application.GetRealWidth(81),
                Y = Application.GetRealHeight(98),
                //Gravity = Gravity.CenterVertical;
                UnSelectedImagePath = "ZigeeLogic/back.png",
            };
            topRowLayout.AddChidren(back);
            back.MouseDownEventHandler += (sender, e) =>
            {
                RemoveFromParent();
            };
            #endregion
            var middle = new VerticalScrolViewLayout
            {
                Y = topRowLayout.Bottom,
                Height = Application.GetRealHeight(1920 - 184),
                BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor,
            };
            this.AddChidren(middle);
            foreach (var user in Send.UserList)
            {
                var userFramelayout = new RowLayout
                deviceConditionsInfo.Add("AttriButeId", openMode);
                deviceConditionsInfo.Add("AttriButeData2", userId);
                userdictionary.Add("Account", Config.Instance.Guid);
                userdictionary.Add("AccountName", accountName);
                userdictionary.Add("Type", "1");
                userdictionary.Add("UserId", userId);
                if (edit)
                {
                    Height = Application.GetRealHeight(160),
                    BackgroundColor = ZigbeeColor.Current.LogicBlankBackgroundColor,
                    LineColor = ZigbeeColor.Current.LogicBlankBackgroundColor,
                };
                middle.AddChidren(userFramelayout);
                var userRow = new RowLayout
                    openModestr = editdeviceConditionsInfo["AttriButeId"];
                    userIdstr = editdeviceConditionsInfo["AttriButeData2"];
                }
                else
                {
                    Y = Application.GetRealHeight(30),
                    Width = Application.GetRealWidth(1080 - 81 - 58),
                    Height = Application.GetRealHeight(130),
                    X = Application.GetRealWidth(81),
                    LineColor = ZigbeeColor.Current.LogicRowLayoutLineColor,
                };
                userFramelayout.AddChidren(userRow);
                var userBtn = new Button
                    openModestr = deviceConditionsInfo["AttriButeId"];
                    userIdstr = deviceConditionsInfo["AttriButeData2"];
                }
                if (SelectedDeviceStatuscondition != "")
                {
                    Text = user.MembershipName,
                    TextAlignment = TextAlignment.CenterLeft,
                    TextColor = ZigbeeColor.Current.LogicTextBlackColor,
                };
                userRow.AddChidren(userBtn);
                var userBack = new Button
                {
                    Width = Application.GetRealWidth(58),
                    Height = Application.GetRealHeight(58),
                    UnSelectedImagePath = "ZigeeLogic/next.png",
                    X = Application.GetRealWidth(1080 - 81 - 58 - 58),
                    Gravity = Gravity.CenterVertical,
                };
                userRow.AddChidren(userBack);
                EventHandler<MouseEventArgs> useridclick = (sender, e) =>
                {
                    var flMain = new FrameLayout { BackgroundColor = ZigbeeColor.Current.LogicViewBackgroundColor };
                    this.AddChidren(flMain);
                    flMain.MouseUpEventHandler += (sender1, e1) =>
                   {
                       flMain.RemoveFromParent();
                   };
                    var lockcolorfra = new FrameLayout
                    bool addConditions = false;
                    bool addAccounts = false;
                    for (int i = 0; i < Common.Logic.CurrentLogic.Conditions.Count; i++)
                    {
                        Width = Application.GetRealWidth(1080),
                        Height = Application.GetRealHeight(100),
                        Y = Application.GetRealHeight(1920 - 100),
                        BackgroundColor = ZigbeeColor.Current.LogicBackgroundColor,
                    };
                    flMain.AddChidren(lockcolorfra);
                    var lockcolorfra1 = new FrameLayout
                    {
                        Width = Application.GetRealWidth(1080),
                        Height = Application.GetRealHeight(530),
                        Y = Application.GetRealHeight(1920 - 530),
                        BackgroundColor = ZigbeeColor.Current.LogicBackgroundColor,
                        Radius = (uint)Application.GetRealHeight(60),
                    };
                    flMain.AddChidren(lockcolorfra1);
                    #region  -------取消   完成
                    var lockRow = new RowLayout
                    {
                        Height = Application.GetRealHeight(140),
                        LineColor = ZigbeeColor.Current.LogicRowLayoutLineColor,
                    };
                    lockcolorfra1.AddChidren(lockRow);
                    var Btncancel = new Button
                    {
                        TextID = MyInternationalizationString.cancel,
                        TextColor = ZigbeeColor.Current.LogicBtnCancelColor,
                        Height = Application.GetRealHeight(140),
                        Width = Application.GetRealWidth(200),
                        X = Application.GetRealWidth(80),
                        TextAlignment = TextAlignment.CenterLeft,
                    };
                    lockRow.AddChidren(Btncancel);
                    Btncancel.MouseUpEventHandler += (sender16, e16) =>
                    {
                        flMain.RemoveFromParent();
                        UserView.HomePage.Instance.ScrollEnabled = true;
                    };
                    var Btntitle = new Button
                    {
                        TextID = MyInternationalizationString.security,
                        TextColor = ZigbeeColor.Current.LogicBtnTypeColor,
                        Height = Application.GetRealHeight(140),
                        Width = Application.GetRealWidth(320),
                        TextAlignment = TextAlignment.Center,
                        X = Btncancel.Right + Application.GetRealWidth(100),
                        TextSize = 16,
                        Text = user.MembershipName,
                    };
                    lockRow.AddChidren(Btntitle);
                    var Btncomplete = new Button
                    {
                        TextID = MyInternationalizationString.complete,
                        TextColor = ZigbeeColor.Current.LogicBtnCompleteColor,
                        Height = Application.GetRealHeight(140),
                        Width = Application.GetRealWidth(200),
                        TextAlignment = TextAlignment.CenterRight,
                        X = Btntitle.Right + Application.GetRealWidth(100),
                    };
                    lockRow.AddChidren(Btncomplete);
                    #endregion
                    string SelectedDeviceStatuscondition = "";
                    lockcolorfra1.Y = Application.GetRealHeight(1920 - 140 - (160 * user.UserIdMode.Count) - 20 - 50);
                    lockcolorfra1.Height = Application.GetRealHeight(140 + (160 * user.UserIdMode.Count) + 20 + 50);
                    for (int i = 0; i < user.UserIdMode.Count; i++)
                    {
                        var userid = user.UserIdMode[i];
                        var doorlockfra = new FrameLayout
                        if (Common.Logic.CurrentLogic.Conditions[i]["Type"] == "1")
                        {
                            Height = Application.GetRealHeight(160),
                            Y = lockRow.Bottom + Application.GetRealHeight(20 + 160 * i),
                        };
                        lockcolorfra1.AddChidren(doorlockfra);
                        var doorlockRow = new RowLayout
                        {
                            Y = Application.GetRealHeight(30),
                            Width = Application.GetRealWidth(920),
                            Height = Application.GetRealHeight(130),
                            X = Application.GetRealWidth(80),
                            LineColor = ZigbeeColor.Current.LogicRowLayoutLineColor,
                        };
                        doorlockfra.AddChidren(doorlockRow);
                        var doorlockBtn = new Button
                        {
                            Width = Application.GetRealWidth(600),
                            TextAlignment = TextAlignment.CenterLeft,
                            TextColor = ZigbeeColor.Current.LogicBtnNotSelectedColor,
                        };
                        doorlockRow.AddChidren(doorlockBtn);
                        //(1按键/3卡/15指纹)
                        string[] s = userid.Split('_');
                        switch (s[1])
                        {
                            case "0":
                            if ((Common.Logic.CurrentLogic.Conditions[i]["MacAddr"] == common.DeviceAddr) && (Common.Logic.CurrentLogic.Conditions[i]["Epoint"] == common.DeviceEpoint.ToString()))
                            {
                                if (Common.Logic.CurrentLogic.Conditions[i]["AttriButeId"] == openModestr && Common.Logic.CurrentLogic.Conditions[i]["AttriButeData2"] == userIdstr)
                                {
                                    doorlockBtn.Text = Language.StringByID(MyInternationalizationString.lockpassword);
                                    Common.Logic.CurrentLogic.Conditions.RemoveAt(i);
                                    Common.Logic.CurrentLogic.Conditions.Insert(i, deviceConditionsInfo);
                                    addConditions = true;
                                    break;
                                }
                                break;
                            case "3":
                                {
                                    doorlockBtn.Text = Language.StringByID(MyInternationalizationString.ic);
                                }
                                break;
                            case "15":
                                {
                                    doorlockBtn.Text = Language.StringByID(MyInternationalizationString.fingerprint);
                                }
                                break;
                            }
                        }
                        var doorlockSelected = new Button
                    }
                    for (int j = 0; j < Common.Logic.CurrentLogic.Accounts.Count; j++)
                    {
                        if (Common.Logic.CurrentLogic.Accounts[j]["Type"] == "1")
                        {
                            X = Application.GetRealWidth(860),
                            Width = Application.GetMinRealAverage(60),
                            Height = Application.GetMinRealAverage(60),
                            UnSelectedImagePath = "ZigeeLogic/selected.png",
                            Visible = false,
                            Gravity = Gravity.CenterVertical,
                        };
                        doorlockRow.AddChidren(doorlockSelected);
                        if ((user.UserIdMode.Count - 1) == i)
                        {
                            doorlockRow.LineColor = ZigbeeColor.Current.LogicBackgroundColor;
                            if (Common.Logic.CurrentLogic.Accounts[j]["UserId"] == userIdstr)
                            {
                                Common.Logic.CurrentLogic.Accounts.RemoveAt(j);
                                Common.Logic.CurrentLogic.Accounts.Insert(j, userdictionary);
                                addAccounts = true;
                                break;
                            }
                        }
                        EventHandler<MouseEventArgs> doorlockclick = (sender2, e2) =>
                        {
                            SelectedDeviceStatuscondition = "DoorLock";
                            selectedIcon.Visible = false;
                            selectedIcon = doorlockSelected;
                            doorlockSelected.Visible = true;
                            //doorlockBtn.TextColor = ZigbeeColor.Current.LogicBtnSelectedColor;
                            if (deviceConditionsInfo.ContainsKey("AttriButeId"))
                            {
                                deviceConditionsInfo.Remove("AttriButeId");
                            }
                            if (deviceConditionsInfo.ContainsKey("AttriButeData2"))
                            {
                                deviceConditionsInfo.Remove("AttriButeData2");
                            }
                            deviceConditionsInfo.Add("AttriButeId", s[1]);
                            deviceConditionsInfo.Add("AttriButeData2", s[0]);
                            if (userdictionary.ContainsKey("Account"))
                            {
                                userdictionary.Remove("Account");
                            }
                            if (userdictionary.ContainsKey("Type"))
                            {
                                userdictionary.Remove("Type");
                            }
                            if (userdictionary.ContainsKey("UserId"))
                            {
                                userdictionary.Remove("UserId");
                            }
                            userdictionary.Add("Account", Btntitle.Text+doorlockBtn.Text);
                            userdictionary.Add("Type", "1");
                            userdictionary.Add("UserId", s[0]);
                        };
                        doorlockRow.MouseUpEventHandler += doorlockclick;
                        doorlockBtn.MouseUpEventHandler += doorlockclick;
                        doorlockSelected.MouseUpEventHandler += doorlockclick;
                        doorlockfra.MouseUpEventHandler += doorlockclick;
                        if (edit)
                        {
                            if (editdeviceConditionsInfo["AttriButeData2"] == s[1])
                            {
                                selectedIcon.Visible = false;
                                selectedIcon = doorlockSelected;
                                doorlockSelected.Visible = true;
                            }
                        }
                    }
                    if (!addConditions)
                    {//没有存在数据新加
                        Common.Logic.CurrentLogic.Conditions.Add(deviceConditionsInfo);
                    }
                    if (!addAccounts)
                    {//没有存在数据新加
                        Common.Logic.CurrentLogic.Accounts.Add(userdictionary);
                    }
                }
                else
                {
                    if (!edit)
                    {
                        var alert = new UserCenter.ShowMsgControl(UserCenter.ShowMsgType.Normal,
                         Language.StringByID(MyInternationalizationString.selectdevicestatuscondition),
                         Language.StringByID(MyInternationalizationString.confrim));
                        alert.Show();
                        return;
                    }
                }
                flMain.RemoveFromParent();
                var logicCommunalPage = new LogicCommunalPage();
                UserView.HomePage.Instance.AddChidren(logicCommunalPage);
                UserView.HomePage.Instance.PageIndex += 1;
                logicCommunalPage.Show(() => { });
                    Btncomplete.MouseUpEventHandler += (sender3, e3) =>
                    {
                        if (SelectedDeviceStatuscondition != "")
                        {
            };
                            for (int i = 0; i < Common.Logic.CurrentLogic.Conditions.Count; i++)
                            {
                                if (Common.Logic.CurrentLogic.Conditions[i]["Type"] == "1")
                                {
                                    if ((Common.Logic.CurrentLogic.Conditions[i]["MacAddr"] == common.DeviceAddr) && (Common.Logic.CurrentLogic.Conditions[i]["Epoint"] == common.DeviceEpoint.ToString()))
                                    {
                                        if (Common.Logic.CurrentLogic.Conditions[i]["AttriButeId"] == editdeviceConditionsInfo["AttriButeId"] && Common.Logic.CurrentLogic.Conditions[i]["AttriButeData2"] == editdeviceConditionsInfo["AttriButeData2"])
                                        {
                                            Common.Logic.CurrentLogic.Conditions.RemoveAt(i);
                                            Common.Logic.CurrentLogic.Conditions.Insert(i, deviceConditionsInfo);
                                            for (int j = 0; j < Common.Logic.CurrentLogic.Accounts.Count; j++)
                                            {
                                                if (Common.Logic.CurrentLogic.Accounts[j]["UserId"] == editdeviceConditionsInfo["AttriButeData2"])
                                                {
                                                    Common.Logic.CurrentLogic.Accounts.RemoveAt(j);
                                                    Common.Logic.CurrentLogic.Accounts.Insert(j, userdictionary);
                                                }
                                            }
                                            return;
                                        }
                                    }
                                }
                            }
                            Common.Logic.CurrentLogic.Accounts.Add(userdictionary);
                            Common.Logic.CurrentLogic.Conditions.Add(deviceConditionsInfo);
                        }
                        else
                        {
                            if (!edit)
                            {
                                var alert = new Alert(Language.StringByID(MyInternationalizationString.Prompt),
                                                       Language.StringByID(MyInternationalizationString.selectdevicestatuscondition),
                                                       Language.StringByID(MyInternationalizationString.complete));
                                alert.Show();
                                return;
                            }
                        }
                        flMain.RemoveFromParent();
                        var logicCommunalPage = new LogicCommunalPage();
                        UserView.HomePage.Instance.AddChidren(logicCommunalPage);
                        UserView.HomePage.Instance.PageIndex += 1;
                        logicCommunalPage.Show(() => { });
                    };
                };
                userBtn.MouseUpEventHandler += useridclick;
                userBack.MouseUpEventHandler += useridclick;
                userFramelayout.MouseUpEventHandler += useridclick;
                userRow.MouseUpEventHandler += useridclick;
            }
        }
    }
}