From 355222d6bd72a004db00b875cc9263b7e433dc73 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期五, 27 九月 2024 16:16:24 +0800 Subject: [PATCH] 整理文件 --- WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-pumpsinglematching/XhsProjectSimulationPumpSingleMatchingForm.cs | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-PumpMainCurveChoice/PumpMainForm.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-pumpsinglematching/XhsProjectSimulationPumpSingleMatchingForm.cs similarity index 93% rename from WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-PumpMainCurveChoice/PumpMainForm.cs rename to WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-pumpsinglematching/XhsProjectSimulationPumpSingleMatchingForm.cs index 9dfaac6..78e31d0 100644 --- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-PumpMainCurveChoice/PumpMainForm.cs +++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-pumpsinglematching/XhsProjectSimulationPumpSingleMatchingForm.cs @@ -4,9 +4,9 @@ namespace HStation.WinFrmUI.Xhs.Core { - public partial class PumpMainForm : DevExpress.XtraEditors.XtraUserControl + public partial class XhsProjectSimulationPumpSingleMatchingForm : DevExpress.XtraEditors.XtraUserControl { - public PumpMainForm() + public XhsProjectSimulationPumpSingleMatchingForm() { InitializeComponent(); this.gridView1.SetNormalView(); @@ -28,7 +28,7 @@ public Vmo.XhsPumpMainPhartMappingExtensions Curveinfo { get; set; } } - private List<PumpMainChoieViewModel> _allBindingList = null; + private List<XhsProjectSimulationPumpSingleMatchingViewModel> _allBindingList = null; private BLL.PumpMain _pumpBll = null; @@ -40,12 +40,12 @@ public async void SetBindingData(PumpMatchingViewModel pumpMatchingViewModel) { _pumpMatchingViewModel = pumpMatchingViewModel; - _allBindingList = new List<PumpMainChoieViewModel>(); + _allBindingList = new List<XhsProjectSimulationPumpSingleMatchingViewModel>(); _pumpBll = new BLL.PumpMain(); var allPumpMain = await _pumpBll.GetAll(); foreach (var Main in allPumpMain) { - _allBindingList.Add(new PumpMainChoieViewModel(Main)); + _allBindingList.Add(new XhsProjectSimulationPumpSingleMatchingViewModel(Main)); } for (int i = 0; i < _allBindingList.Count; i++) { -- Gitblit v1.9.3