1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| using System;
| using HDL_ON.Entity;
| using Shared;
|
| namespace HDL_ON.UI
| {
| public partial class RoomPage
| {
| /// <summary>
| /// 更新功能状态
| /// </summary>
| /// <param name="function"></param>
| public static void UpdataStates(Function function)
| {
| new ClassificaitionPublicBLL().UpdataStates(function, bodyView, functionListView,room);
| }
|
| /// <summary>
| /// 加载事件列表
| /// </summary>
| void LoadEventList()
| {
|
| }
|
| /// <summary>
| /// 跳转到编辑房间的界面
| /// </summary>
| void LoadEvent_SkipEditRoomPage()//Room r, Button btnRoomName, Button btnBg)
| {
|
| Action editBackAction = () =>
| {
|
| };
| var skipPage = new RoomEditPage(room, StringId.EditRoomInfo, editBackAction);
| MainPage.BasePageView.AddChidren(skipPage);
| skipPage.LoadPage();
| MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
| }
|
| }
| }
|
|