From d68d94ae29987d123c5c4e207ee65c713052348c Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期四, 23 九月 2021 14:40:49 +0800 Subject: [PATCH] 2021-09-23 1.增加本地加密通信 --- HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) diff --git a/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs b/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs index 84bfea6..b5d660b 100644 --- a/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs +++ b/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs @@ -2,6 +2,7 @@ using System; using Shared; using HDL_ON.Entity; +using System.Text.RegularExpressions; namespace HDL_ON.UI { @@ -26,16 +27,19 @@ { new Tip() { - CloseTime = 3, + CloseTime = 1, Text = Language.StringByID(StringId.DeviceNameCannotBeEmpty), Direction = AMPopTipDirection.None, }.Show(bodyView); return; } - - function.name = name; - btnFunctionName.Text = name; - function.SaveFunctionData(); + if (function.name != name) + { + function.name = name; + btnFunctionName.Text = name; + function.UpdataFuncitonInfo(); + actionRefresh?.Invoke(); + } }; new PublicAssmebly().LoadDialog_EditParater(StringId.ChangeName, function.name, callBackAction,StringId.DeviceNameCannotBeEmpty,0,new System.Collections.Generic.List<string>()); }; @@ -59,7 +63,10 @@ view.LoadPage(); MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; }; - btnLocationInfoRight.MouseUpEventHandler = eventHandler; + if (btnLocationInfoRight != null) + { + btnLocationInfoRight.MouseUpEventHandler = eventHandler; + } btnLocationValues.MouseUpEventHandler = eventHandler; } } -- Gitblit v1.8.0