| | |
| | |
|
| | | var dialogBody = new NormalFrameLayout();
|
| | | FrameDialog.AddChidren(dialogBody);
|
| | | FrameDialog.Show();
|
| | | dialogBody.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | if (ClickBackClose == true && this.btnCancel != null)
|
| | |
| | | //白色背景
|
| | | 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);
|
| | |
| | | btnConfirm.TextSize = CSS_FontSize.TextFontSize;
|
| | | frameWhiteBack.AddChidren(btnConfirm);
|
| | |
|
| | | FrameDialog.Show();
|
| | |
|
| | | return frameWhiteBack;
|
| | | }
|
| | |
|