| | |
| | | }; |
| | | editView.AddChidren(etParater); |
| | | |
| | | Button btnClear = new Button() |
| | | { |
| | | X = Application.GetRealWidth(218), |
| | | Y = Application.GetRealWidth(66), |
| | | Width = Application.GetRealWidth(24), |
| | | Height = Application.GetRealWidth(24), |
| | | UnSelectedImagePath = "Public/ClearIcon.png", |
| | | }; |
| | | contentView.AddChidren(btnClear); |
| | | |
| | | btnClear.MouseUpEventHandler = (sender, e) => |
| | | { |
| | | etParater.Text = ""; |
| | | }; |
| | | |
| | | etParater.TextChangeEventHandler = (sender, e) => |
| | | { |
| | | if (etParater.Text.Length > 20) |
| | |
| | | TextAlignment = TextAlignment.CenterRight, |
| | | TextColor = CSS_Color.MainColor, |
| | | TextSize = CSS_FontSize.TextFontSize, |
| | | TextID = StringId.Complete, |
| | | TextID = StringId.Confirm, |
| | | }; |
| | | topView.AddChidren(btnConfrim); |
| | | |