| | |
| | | public class EmptyTipView : FrameLayout |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// 提示文字 |
| | | /// </summary> |
| | | public Button btnTipNotText; |
| | | public Button BtnTipNotText; |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// 提示图片 |
| | | /// </summary> |
| | | public Button btnTipNot; |
| | | public Button BtnTipNot; |
| | | |
| | | /// <summary> |
| | | /// |
| | |
| | | |
| | | this.Height = tipHeight + Application.GetRealHeight(17); |
| | | |
| | | btnTipNot = new Button() |
| | | BtnTipNot = new Button() |
| | | { |
| | | Gravity = Gravity.CenterHorizontal, |
| | | Width = tipHeight, |
| | | Height = tipHeight, |
| | | UnSelectedImagePath = "TipNot.png", |
| | | }; |
| | | this.AddChidren(btnTipNot); |
| | | this.AddChidren(BtnTipNot); |
| | | |
| | | //空空如也 |
| | | Button btnTipNotText = new Button() |
| | | { |
| | | Y = btnTipNot.Bottom, |
| | | Y = tipHeight, |
| | | Height = Application.GetRealHeight(17), |
| | | TextID = StringId.ContentIsEmpty, |
| | | TextAlignment = TextAlignment.Center, |