JLChen
2020-12-09 e87985ec1dcb69beedaf9f95e8e7aba14b7c08d6
HDL_ON/UI/UI0-Public/Widget/EmptyTipView.cs
@@ -11,14 +11,14 @@
    public class EmptyTipView : FrameLayout
    {
        /// <summary>
        ///
        /// 提示文字
        /// </summary>
        public Button btnTipNotText;
        public Button BtnTipNotText;
        /// <summary>
        ///
        /// 提示图片
        /// </summary>
        public Button btnTipNot;
        public Button BtnTipNot;
        /// <summary>
        /// 
@@ -29,19 +29,19 @@
            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,