From 166c81e63cd1d0a1649823e4299daeaaf1ea0987 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期六, 29 七月 2023 11:11:01 +0800
Subject: [PATCH] 2.0bug修复

---
 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..e274951 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.UTF8.GetBytes(etParater.Text).Length > entryMaxLength)
                 {
                     etParater.Text = etParater.Text.Remove(etParater.Text.Length-1);
 

--
Gitblit v1.8.0