| | |
| | | using System; |
| | | using Shared.Common; |
| | | using Shared.Phone.UserView; |
| | | |
| | | namespace Shared.Phone.Device.CommonForm |
| | | { |
| | |
| | | /// CardBG |
| | | /// </summary> |
| | | private Button CardBG; |
| | | |
| | | /// <summary> |
| | | /// ClickBtn |
| | | /// </summary> |
| | | public Button ClickBtn; |
| | | /// <summary> |
| | | /// 是否可以触发点击事件 |
| | | /// </summary> |
| | | public bool CanClick = true; |
| | | /// <summary> |
| | | /// RoomMainView |
| | | /// </summary> |
| | |
| | | /// <summary> |
| | | /// init |
| | | /// </summary> |
| | | public void Init() |
| | | public void Init(FrameLayout frameLayout, Common.Room room) |
| | | { |
| | | CardBG = new Button |
| | | { |
| | |
| | | IsBold=true |
| | | }; |
| | | AddChidren(RoomNameButton); |
| | | |
| | | ClickBtn = new Button { }; |
| | | AddChidren(ClickBtn); |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | { |
| | | Icon.ImagePath = imagePath; |
| | | } |
| | | |
| | | |
| | | } |
| | | } |