From ca1ccd0dd9f2d6936368f07d14a2b29b309fd151 Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期三, 04 十二月 2024 15:59:25 +0800
Subject: [PATCH] 增加单独匹配界面

---
 WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/06-threelink/01-threelinksinglematching/ThreeLinkSingMatchingDlg.cs |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/06-threelink/01-threelinksinglematching/ThreeLinkSingMatchingDlg.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/06-threelink/01-threelinksinglematching/ThreeLinkSingMatchingDlg.cs
index de8b184..01fcbf7 100644
--- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/06-threelink/01-threelinksinglematching/ThreeLinkSingMatchingDlg.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/06-threelink/01-threelinksinglematching/ThreeLinkSingMatchingDlg.cs
@@ -8,20 +8,20 @@
             this.IconOptions.Icon = Yw.WinFrmUI.GlobalParas.AppIcon;
         }
 
-        public event Action<ThreelinkMatchingViewModel> ReloadDataEvent;
+        public event Action<HydroThreelinkMatchingViewModel> ReloadDataEvent;
 
-        private ThreelinkMatchingViewModel _ValveMatchingView = null;
+        private HydroThreelinkMatchingViewModel _threelinkMatchingView = null;
 
-        public void SetBindingData(ThreelinkMatchingViewModel PipeMatchingViewModel)
+        public void SetBindingData(HydroThreelinkMatchingViewModel ThreelinkMatchingViewModel)
         {
-            this.ThreeLinkSingleMatchingForm1.SetBindingData(PipeMatchingViewModel);
-            _ValveMatchingView = PipeMatchingViewModel;
+            this.ThreeLinkSingleMatchingForm1.SetBindingData(ThreelinkMatchingViewModel);
+            _threelinkMatchingView = ThreelinkMatchingViewModel;
         }
 
         //纭畾
         private void btnComplete_Click(object sender, EventArgs e)
         {
-            ReloadDataEvent.Invoke(_ValveMatchingView);
+            ReloadDataEvent.Invoke(_threelinkMatchingView);
             this.Close();
         }
     }

--
Gitblit v1.9.3