From fdbcb1f7463cb766f90bd29dd715485ba9d88524 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期三, 06 九月 2023 17:55:03 +0800 Subject: [PATCH] Merge branch 'wxr-2.0' into Dev-Branch --- HDL_ON/UI/UI0-Public/PublicAssmebly.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HDL_ON/UI/UI0-Public/PublicAssmebly.cs b/HDL_ON/UI/UI0-Public/PublicAssmebly.cs index 01208a2..496c9ab 100644 --- a/HDL_ON/UI/UI0-Public/PublicAssmebly.cs +++ b/HDL_ON/UI/UI0-Public/PublicAssmebly.cs @@ -13,7 +13,7 @@ { public Button btnTip; - public int entryMaxLength = 40; + public int entryMaxLength = 20; //public Action entrylistener; void EditParaterEvent(Button btnConfirm, int errorId_IsNullOrEmpty, int errorId_ContainsPar, List<string> list, EditText editText, Action<string> callBackAction, @@ -155,7 +155,7 @@ etParater.TextChangeEventHandler = (sender, e) => { - if (System.Text.Encoding.Default.GetBytes(etParater.Text).Length > entryMaxLength) + if (System.Text.Encoding.Unicode.GetBytes(etParater.Text).Length > entryMaxLength) { etParater.Text = etParater.Text.Remove(etParater.Text.Length-1); -- Gitblit v1.8.0