| | |
| | | Action action = () => { |
| | | UserMiddle.ShowRoomsView (); |
| | | }; |
| | | |
| | | |
| | | ItemButton.MouseUpEventHandler +=(sender, e) => { |
| | | AddOrUpdateRoom (action); |
| | | }; |
| | |
| | | } |
| | | |
| | | var RoomBodyView = new VerticalScrolViewLayout () { |
| | | //Y = Application.GetRealHeight (126), |
| | | //Width = Application.GetRealWidth(640), |
| | | //Height = Application.GetRealHeight (1136 - 126 - 90), |
| | | Y = Application.GetRealHeight (126), |
| | | Width = Application.GetRealWidth(640), |
| | | Height = Application.GetRealHeight (1136 - 126 - 90), |
| | | Height = Application.GetRealHeight (Application.DesignHeight - 126 - UserMiddle.userMenuItemHeight), |
| | | }; |
| | | UserMiddle.RoomBodyView.AddChidren (RoomBodyView); |
| | | |