| | |
| | | |
| | | private Button floorBtn; |
| | | |
| | | private FrameLayout itemView; |
| | | public FrameLayout itemView; |
| | | |
| | | #endregion |
| | | |
| | | |
| | | public Action action; |
| | | |
| | | |
| | | public override void RemoveFromParent() |
| | | { |
| | |
| | | top.SetTopTitle(R.MyInternationalizationString.RoomList); |
| | | top.backButton.MouseUpEventHandler += (sender, e) => |
| | | { |
| | | RemoveFromParent(); |
| | | CommonPage.Instance.CloseLeftMenu(); |
| | | }; |
| | | |
| | | floorBtn = new Button() |
| | |
| | | { |
| | | var floors = new SelectFloor(); |
| | | AddChidren(floors); |
| | | floors.Init(599, 161); |
| | | floors.Init(599, 161,Direction.Right); |
| | | floors.FloorAction += (floorName) => |
| | | { |
| | | floorBtn.Text = floorName; |
| | | }; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// AddBodyView |
| | | /// </summary> |