| | |
| | | int rowCount = 1; |
| | | Action backAction; |
| | | |
| | | public RoomEditPage(Room r, int tId,Action action) |
| | | /// <summary> |
| | | /// 删除房间事件 |
| | | /// 2020-12-02 解决删除房间后,界面不刷新删除房间问题 |
| | | /// </summary> |
| | | Action deleteAction; |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | /// <param name="r"></param> |
| | | /// <param name="tId"></param> |
| | | /// <param name="action"></param> |
| | | /// <param name="delAction">删除房间事件</param> |
| | | public RoomEditPage(Room r, int tId, Action action, Action delAction) |
| | | { |
| | | bodyView = this; |
| | | room = r; |
| | | pageTitleId = tId; |
| | | backAction = action; |
| | | this.deleteAction = delAction; |
| | | } |
| | | |
| | | public void LoadPage() |