From 4cb1f00f84d160f97afd0fb86cf600e1be667dd5 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期四, 17 十月 2024 11:22:15 +0800
Subject: [PATCH] 水力组件更新

---
 WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/AddSysPropGrouoDlg.cs |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/AddSysPropGrouoDlg.cs b/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/AddSysPropGrouoDlg.cs
index 776730d..a355bd4 100644
--- a/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/AddSysPropGrouoDlg.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/AddSysPropGrouoDlg.cs
@@ -7,15 +7,16 @@
         public AddSysPropGrouoDlg()
         {
             InitializeComponent();
+            this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
         }
 
-        public event Func<Yw.Dto.AddSysPropGroupInput, Task<bool>> ReloadDataEvent = null;
+        public event Func<Yw.Vmo.SysPropGroupVmo, Task<bool>> ReloadDataEvent = null;
 
-        private AddSysPropGroupInput _AddPropGroupDto { get; set; }
+        private Yw.Vmo.SysPropGroupVmo _AddPropGroupDto { get; set; }
 
         public async void SetBindingData(long TypeID)
         {
-            _AddPropGroupDto = new AddSysPropGroupInput();
+            _AddPropGroupDto = new Yw.Vmo.SysPropGroupVmo();
             _AddPropGroupDto.TypeID = TypeID;
         }
 

--
Gitblit v1.9.3