| | |
| | | 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();
|
| | | };
|
| | | }
|
| | |
|