| | |
| | |
|
| | | //添加智能网关成功
|
| | | var btnMsg = new NormalViewControl(bodyFrameLayout.Width, Application.GetRealHeight(85), false);
|
| | | btnMsg.IsBold = true;
|
| | | btnMsg.Y = Application.GetRealHeight(732);
|
| | | btnMsg.TextAlignment = TextAlignment.Center;
|
| | | btnMsg.TextSize = 20;
|
| | |
| | | frameAdd.BackgroundImagePath = "Item/BottomButtonGround.png";
|
| | | bodyFrameLayout.AddChidren(frameAdd);
|
| | | var btnAdd = new NormalViewControl(300, 65, true);
|
| | | btnAdd.IsBold = true;
|
| | | btnAdd.TextColor = UserCenterColor.Current.White;
|
| | | btnAdd.TextSize = 16;
|
| | | btnAdd.Y = Application.GetRealHeight(49);
|
| | |
| | | frameAdd.AddChidren(btnAdd, ChidrenBindMode.BindEventOnly);
|
| | | frameAdd.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | //关闭自身
|
| | | this.CloseForm();
|
| | | //关闭列表界面
|
| | | this.CloseFormByFormName("WiredGatewayListForm");
|
| | | //让它退到菜单选择界面
|
| | | UserCenterLogic.CloseAllOpenForm("NewGateWayMenuSelectForm");
|
| | | };
|
| | |
|
| | | //返回主页
|
| | |
| | | bodyFrameLayout.AddChidren(btnGoback);
|
| | | btnGoback.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | //关闭自身
|
| | | this.CloseForm();
|
| | | //关闭列表界面
|
| | | this.CloseFormByFormName("WiredGatewayListForm");
|
| | | //关闭菜单选择界面
|
| | | this.CloseFormByFormName("NewGateWayMenuSelectForm");
|
| | | //让它退到主页
|
| | | UserCenterLogic.CloseAllOpenForm();
|
| | | };
|
| | | }
|
| | |
|