From 67abe8d2af8cf0a21d915ed62dcc4c738e9adcbc Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期五, 30 八月 2024 18:39:00 +0800
Subject: [PATCH] 增加httpclient

---
 WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-scheme/02-asset-mgr/XhsProjectAssetsBimfaceCtrl.cs |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-scheme/02-asset-mgr/XhsProjectAssetsBimfaceCtrl.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-scheme/02-asset-mgr/XhsProjectAssetsBimfaceCtrl.cs
index 3050540..284f0a9 100644
--- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-scheme/02-asset-mgr/XhsProjectAssetsBimfaceCtrl.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-scheme/02-asset-mgr/XhsProjectAssetsBimfaceCtrl.cs
@@ -63,5 +63,30 @@
             this.ClickParterEvent?.Invoke(obj.ObjectId);
         }
 
+        public async Task HideComponents(List<string> elementIds)
+        {
+            await this.bimfaceInterop3dContainer1.HideComponents(elementIds);
+        }
+
+        public async Task ShowComponents(List<string> elementIds)
+        {
+            await this.bimfaceInterop3dContainer1.ShowComponents(elementIds);
+        }
+
+        public async Task ShowAllComponents()
+        {
+            await this.bimfaceInterop3dContainer1.ShowAllComponents();
+        }
+
+        public async Task TranslucentComponents(List<string> elementIds)
+        {
+            await this.bimfaceInterop3dContainer1.TranslucentComponents(elementIds);
+        }
+
+        public async Task OpaqueComponents(List<string> elementIds)
+        {
+            await this.bimfaceInterop3dContainer1.OpaqueComponents(elementIds);
+        }
+
     }
 }

--
Gitblit v1.9.3