From 0f66b9ebc18398af6f7e2c2b411f65c84fe718fc Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期一, 31 七月 2023 22:53:59 +0800
Subject: [PATCH] Merge branch 'Dev-Branch' into wxr-2.1
---
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