JLChen
2021-03-10 4a83749337096aae6dd5ec4f44f16653fbc7268a
HDL_ON/UI/UI0-Stan/Controls/BottomControls/BottomDialogCommon.cs
@@ -57,7 +57,6 @@
            var dialogBody = new NormalFrameLayout();
            FrameDialog.AddChidren(dialogBody);
            FrameDialog.Show();
            dialogBody.ButtonClickEvent += (sender, e) =>
            {
                if (ClickBackClose == true && this.btnCancel != null)
@@ -69,7 +68,7 @@
            //白色背景
            var frameWhiteBack = new NormalFrameLayout();
            frameWhiteBack.Width = Application.GetRealWidth(343);
            frameWhiteBack.Height = RowHeight * (RowCount + 1);
            frameWhiteBack.Height =  RowHeight * (RowCount + 1);
            frameWhiteBack.Radius = (uint)Application.GetRealWidth(12);
            frameWhiteBack.Gravity = Gravity.CenterHorizontal;
            frameWhiteBack.Y = dialogBody.Height - RowHeight * (RowCount + 1) - Application.GetRealHeight(20);
@@ -106,6 +105,8 @@
            btnConfirm.TextSize = CSS_FontSize.TextFontSize;
            frameWhiteBack.AddChidren(btnConfirm);
            FrameDialog.Show();
            return frameWhiteBack;
        }