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 |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs b/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs
index a46b8a4..b5d660b 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/FunctionBaseInfoSetPageBLL.cs
@@ -37,7 +37,8 @@
                     {
                         function.name = name;
                         btnFunctionName.Text = name;
-                        function.SaveFunctionData(true);
+                        function.UpdataFuncitonInfo();
+                        actionRefresh?.Invoke();
                     }
                 };
                 new PublicAssmebly().LoadDialog_EditParater(StringId.ChangeName, function.name, callBackAction,StringId.DeviceNameCannotBeEmpty,0,new System.Collections.Generic.List<string>());
@@ -62,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