From 145dcc3a9ed1c3bcbc01c8da2b341aaa6ee5dbd2 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期一, 14 十月 2024 10:37:44 +0800
Subject: [PATCH] 优化link连接颜色

---
 WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 52 insertions(+), 8 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs
index 7e28757..cb283d1 100644
--- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs
@@ -1,4 +1,5 @@
-锘縰sing Yw.WinFrmUI.Bimface;
+锘縰sing DevExpress.Xpo.Helpers;
+using Yw.WinFrmUI.Bimface;
 
 namespace HStation.WinFrmUI
 {
@@ -417,9 +418,12 @@
 
         #region 涓氬姟
 
+
         #region 杩炴帴鏋勪欢棰滆壊
 
-        private const string _linkComponentColor = "#008B00";
+        private const string _linkComponentColor = "#008B00";//杩炴帴鏋勪欢棰滆壊
+        private const string _linkStartComponentColor = "#094EF7";//杩炴帴寮�濮嬫瀯浠堕鑹�
+        private const string _linkEndComponentColor = "#ECBF08";//杩炴帴缁撴潫鏋勪欢棰滆壊
         private const double _linkComponentTransparency = 0.8;
         private List<string> _linkComponentIds = null;//杩炴帴鏋勪欢id鍒楄〃
 
@@ -428,24 +432,64 @@
         /// </summary>
         public async Task SetLinkComponentsColor(List<string> elementIds)
         {
-            if (_linkComponentIds != null && _linkComponentIds.Count > 0)
-            {
-                await _bimfaceInteropContainer.RestoreComponentsColor(_linkComponentIds);
-            }
+            await RestoreLinkComponentsColor();
             _linkComponentIds = elementIds;
+            if (_linkComponentIds == null || _linkComponentIds.Count < 1)
+            {
+                return;
+            }
+            await _bimfaceInteropContainer?.OverrideComponentsColor(_linkComponentIds, _linkComponentColor, _linkComponentTransparency);
+        }
+
+        /// <summary>
+        /// 鎭㈠杩炴帴鏋勪欢棰滆壊
+        /// </summary>
+        public async Task RestoreLinkComponentsColor()
+        {
+            if (_linkComponentIds == null || _linkComponentIds.Count < 1)
+            {
+                return;
+            }
+            await _bimfaceInteropContainer?.RestoreComponentsColor(_linkComponentIds);
+        }
+
+        /// <summary>
+        /// 璁剧疆杩炴帴寮�濮嬫瀯浠堕鑹�
+        /// </summary>
+        public async Task SetLinkStartComponentsColor(List<string> elementIds)
+        {
             if (elementIds == null || elementIds.Count < 1)
             {
                 return;
             }
-            if (_bimfaceInteropContainer == null)
+            if (_linkComponentIds == null)
+            {
+                _linkComponentIds = new List<string>();
+            }
+            _linkComponentIds.AddRange(elementIds);
+            await _bimfaceInteropContainer?.OverrideComponentsColor(elementIds, _linkStartComponentColor, _linkComponentTransparency);
+        }
+
+        /// <summary>
+        /// 璁剧疆杩炴帴缁撴潫鏋勪欢棰滆壊
+        /// </summary>
+        public async Task SetLinkEndComponentsColor(List<string> elementIds)
+        {
+            if (elementIds == null || elementIds.Count < 1)
             {
                 return;
             }
-            await _bimfaceInteropContainer.OverrideComponentsColor(elementIds, _linkComponentColor, _linkComponentTransparency);
+            if (_linkComponentIds == null)
+            {
+                _linkComponentIds = new List<string>();
+            }
+            _linkComponentIds.AddRange(elementIds);
+            await _bimfaceInteropContainer?.OverrideComponentsColor(elementIds, _linkEndComponentColor, _linkComponentTransparency);
         }
 
         #endregion
 
+
         #region 璁剧疆Open鏋勪欢棰滆壊
 
         private const string _openComponentColor = "#2E8B57";

--
Gitblit v1.9.3