From b8e94316e41eba72d927d5ca7d931b26139ee8ff Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期一, 15 六月 2020 09:12:53 +0800 Subject: [PATCH] 20200612 --- HDL_ON/UI/UI0-Public/PublicAssmebly.cs | 95 ++++------------------------------------------- 1 files changed, 8 insertions(+), 87 deletions(-) diff --git a/HDL_ON/UI/UI0-Public/PublicAssmebly.cs b/HDL_ON/UI/UI0-Public/PublicAssmebly.cs index dffbf51..005951c 100644 --- a/HDL_ON/UI/UI0-Public/PublicAssmebly.cs +++ b/HDL_ON/UI/UI0-Public/PublicAssmebly.cs @@ -116,10 +116,17 @@ X = Application.GetRealWidth(12), Width = Application.GetRealWidth(182), Text = editParater, - TextColor = CSS.CSS_Color.FirstLevelTitleColor, + TextColor = CSS_Color.FirstLevelTitleColor, TextSize = CSS.CSS_FontSize.TextFontSize, }; editView.AddChidren(etParater); + + etParater.TextChangeEventHandler = (sender, e) => { + if(etParater.Text.Length > 20) + { + etParater.Text = etParater.Text.Remove(20); + } + }; Button btnLine = new Button() { @@ -182,92 +189,6 @@ }; 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(); - //}; - } -- Gitblit v1.8.0