From 046df0f7526575cfb8b4b8c045d864c498b5a46c Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期五, 06 十二月 2024 17:06:46 +0800
Subject: [PATCH] 项目Service优化,可见视图列表优化

---
 WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/00-core/03-calcu/02-label/SimulationCalcuResultLabelHelper.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/00-core/03-calcu/02-label/SimulationCalcuResultLabelHelper.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/00-core/03-calcu/02-label/SimulationCalcuResultLabelHelper.cs
index 83ec023..78d9020 100644
--- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/00-core/03-calcu/02-label/SimulationCalcuResultLabelHelper.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/00-core/03-calcu/02-label/SimulationCalcuResultLabelHelper.cs
@@ -43,11 +43,11 @@
                 var labels = GetLabels();
                 if (labels != null && labels.Count > 0)
                 {
-                    _views.ForEach(x => x.SetLogicCalcuCustomLabels(labels));
+                    _views.ForEach(async x => await x.SetLogicCalcuCustomLabels(labels));
                     return;
                 }
             }
-            _views.ForEach(x => x.ClearLogicCalcuCustomLabels());
+            _views.ForEach(async x => await x.ClearLogicCalcuCustomLabels());
         }
 
         //鑾峰彇璁$畻鏍囩

--
Gitblit v1.9.3