| | |
| | | /// 保存按钮事件需要将 |
| | | /// </summary> |
| | | /// <param name="callBackAction">回调函数</param> |
| | | public void LoadDialog_EditParater(int titleId, string editParater, Action<string> callBackAction, int errorId_IsNullOrEmpty, int errorId_ContainsPar, List<string> baseList) |
| | | public void LoadDialog_EditParater(int titleId, string editParater, Action<string> callBackAction, int errorId_IsNullOrEmpty, int errorId_ContainsPar, List<string> baseList,bool encryption = false) |
| | | { |
| | | Dialog dialog = new Dialog() |
| | | { |
| | |
| | | X = Application.GetRealWidth(12), |
| | | Width = Application.GetRealWidth(182), |
| | | Text = editParater, |
| | | TextColor = CSS.CSS_Color.FirstLevelTitleColor, |
| | | TextSize = CSS.CSS_FontSize.TextFontSize, |
| | | TextColor = CSS_Color.FirstLevelTitleColor, |
| | | TextSize = CSS_FontSize.TextFontSize, |
| | | SecureTextEntry = encryption |
| | | }; |
| | | editView.AddChidren(etParater); |
| | | |
| | | etParater.TextChangeEventHandler = (sender, e) => { |
| | | if(etParater.Text.Length > 20) |
| | | { |
| | | etParater.Text = etParater.Text.Remove(20); |
| | | } |
| | | }; |
| | | |
| | | Button btnLine = new Button() |
| | | { |
| | | Y = Application.GetRealHeight(128), |
| | | Height = Application.GetRealHeight(1), |
| | | BackgroundColor = CSS.CSS_Color.DividingLineColor, |
| | | BackgroundColor = CSS_Color.DividingLineColor, |
| | | }; |
| | | contentView.AddChidren(btnLine); |
| | | |
| | |
| | | }; |
| | | EditParaterEvent(btnConfirm, errorId_IsNullOrEmpty, errorId_ContainsPar, baseList, etParater, callBackAction, |
| | | contentView, btnLine, btnBottomLine, btnCancel, editView, dialog); |
| | | //btnConfirm.MouseUpEventHandler += (sender, e) => |
| | | //{ |
| | | // btnConfirm.IsSelected = false; |
| | | |
| | | // if (string.IsNullOrEmpty(etParater.Text.Trim())|| list.Contains(etParater.Text.Trim())) |
| | | // { |
| | | // string tipMsgString = ""; |
| | | // if (string.IsNullOrEmpty(etParater.Text.Trim())) |
| | | // { |
| | | // tipMsgString = Language.StringByID(errorId_IsNullOrEmpty); |
| | | // } |
| | | // else |
| | | // { |
| | | // tipMsgString = Language.StringByID(errorId_ContainsPar); |
| | | // } |
| | | |
| | | // contentView.Height = Application.GetRealHeight(183); |
| | | // btnLine.Y = Application.GetRealHeight(139); |
| | | // btnBottomLine.Y = btnLine.Bottom; |
| | | // btnCancel.Y = btnLine.Bottom; |
| | | // btnConfirm.Y = btnLine.Bottom; |
| | | |
| | | |
| | | // var btnTip = new Button() |
| | | // { |
| | | // X = editView.X, |
| | | // Y = editView.Bottom, |
| | | // Width = Application.GetRealWidth(182), |
| | | // Height = Application.GetRealHeight(30), |
| | | // Text = tipMsgString, |
| | | // TextColor = CSS_Color.WarningColor, |
| | | // TextSize = CSS_FontSize.TextFontSize, |
| | | // }; |
| | | // contentView.AddChidren(btnTip); |
| | | |
| | | // return; |
| | | // } |
| | | |
| | | // //需要提示错误信息在窗口弹窗之上的 |
| | | // if ((titleId == StringId.EditFloorName && etParater.Text.Trim() != editParater) || titleId == StringId.AddFloors) |
| | | // { |
| | | // var tipMsgString = titleId == StringId.EditFloorName ? Language.StringByID(StringId.AddFloorFailed_FloorAlreadyExist) : Language.StringByID(StringId.AddFloorFailed_FloorAlreadyExist); |
| | | |
| | | // if (string.IsNullOrEmpty(etParater.Text.Trim())) |
| | | // { |
| | | // tipMsgString = Language.StringByID(StringId.FloorNameCannotBeEmpty); |
| | | // //return; |
| | | // } |
| | | |
| | | // if (DB_ResidenceData.residenceData.floors.Contains(etParater.Text.Trim())) |
| | | // { |
| | | // contentView.Height = Application.GetRealHeight(183); |
| | | // btnLine.Y = Application.GetRealHeight(139); |
| | | // btnBottomLine.Y = btnLine.Bottom; |
| | | // btnCancel.Y = btnLine.Bottom; |
| | | // btnConfirm.Y = btnLine.Bottom; |
| | | |
| | | |
| | | // var btnTip = new Button() |
| | | // { |
| | | // X = editView.X, |
| | | // Y = editView.Bottom, |
| | | // Width = Application.GetRealWidth(182), |
| | | // Height = Application.GetRealHeight(30), |
| | | // Text = tipMsgString, |
| | | // TextColor = CSS_Color.WarningColor, |
| | | // TextSize = CSS_FontSize.TextFontSize, |
| | | // }; |
| | | // contentView.AddChidren(btnTip); |
| | | |
| | | // return; |
| | | // } |
| | | |
| | | // callBackAction(etParater.Text.Trim()); |
| | | // } |
| | | |
| | | // if(titleId == StringId.RoomName || titleId == StringId.ChangeName || titleId == StringId.ResidenceName || titleId == StringId.UesrName) |
| | | // { |
| | | // if(editParater != etParater.Text.Trim()) |
| | | // { |
| | | // callBackAction(etParater.Text.Trim()); |
| | | // } |
| | | // } |
| | | // dialog.Close(); |
| | | //}; |
| | | |
| | | } |
| | | |
| | | |
| | |
| | | /// </summary> |
| | | /// <param name="msg"></param> |
| | | /// <param name="isWhite"></param> |
| | | public void TipMsgAutoClose(string msg,bool isWhite) |
| | | public void TipMsgAutoClose(string msg,bool isWhite,int closeTime = 1500) |
| | | { |
| | | Dialog dialog = new Dialog() |
| | | { |
| | |
| | | dialog.Show(); |
| | | |
| | | new Thread(() => { |
| | | Thread.Sleep(1500); |
| | | Thread.Sleep(closeTime); |
| | | Application.RunOnMainThread(() => |
| | | { |
| | | dialog.Close(); |
| | |
| | | thread.Start(); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 加载显示等待窗口 |
| | | /// </summary> |
| | | /// <param name="msg"></param> |
| | | /// <returns>返回关闭窗口Action</returns> |
| | | public Action TipLoadingMsgDialog(string msg) |
| | | { |
| | | Dialog dialog = new Dialog() |
| | | { |
| | | X = Application.GetRealWidth(89), |
| | | Y = Application.GetRealHeight(285), |
| | | Width = Application.GetRealWidth(198), |
| | | Height = Application.GetRealHeight(98), |
| | | }; |
| | | |
| | | FrameLayout frame = new FrameLayout() |
| | | { |
| | | BackgroundColor = CSS_Color.DialogTransparentColor1, |
| | | Radius = (uint)Application.GetRealWidth(12), |
| | | }; |
| | | dialog.AddChidren(frame); |
| | | |
| | | Button btnTipIcon = new Button() |
| | | { |
| | | Gravity = Gravity.CenterHorizontal, |
| | | Y = Application.GetRealHeight(15), |
| | | Width = Application.GetRealWidth(32), |
| | | Height = Application.GetRealWidth(32), |
| | | UnSelectedImagePath = "Public/MsgIcon/LoadingIcon.png", |
| | | }; |
| | | frame.AddChidren(btnTipIcon); |
| | | |
| | | Button btnTipMsg = new Button() |
| | | { |
| | | Y = Application.GetRealHeight(47), |
| | | Height = Application.GetRealHeight(50), |
| | | TextAlignment = TextAlignment.Center, |
| | | TextSize = CSS_FontSize.TextFontSize, |
| | | TextColor = CSS_Color.MainBackgroundColor, |
| | | Text = msg, |
| | | }; |
| | | frame.AddChidren(btnTipMsg); |
| | | |
| | | dialog.Show(); |
| | | return new Action(() => { |
| | | dialog.Close(); |
| | | }); |
| | | } |
| | | |
| | | } |
| | | } |