Shuxia Ning
2024-11-25 d4898c5d7e1bbbbba384a0e29f29c066d6f502a7
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/02-bimface/XhsProjectSimulationBimfaceCtrl.cs
@@ -2,7 +2,7 @@
namespace HStation.WinFrmUI
{
    public partial class XhsProjectSimulationBimfaceCtrl : DevExpress.XtraEditors.XtraUserControl
    public partial class XhsProjectSimulationBimfaceCtrl : DevExpress.XtraEditors.XtraUserControl, ISimulationFlowEffectView, ISimulationVisualVisibleView, ISimulationMonitorMarkerView, ISimulationCalcuResultLabelView, ISimulationMarkView, ISimulationGradingView
    {
        public XhsProjectSimulationBimfaceCtrl()
        {
@@ -178,22 +178,22 @@
        #endregion
        #region 构件的半透明与取消
        #region 半透明
        /// <summary>
        /// 半透明构件
        /// 半透明
        /// </summary>
        public async Task TranslucentComponents(List<string> elementIds)
        public async Task TranslucentComponents(List<string> codes)
        {
            await _bimfaceInteropContainer?.TranslucentComponents(elementIds);
            await _bimfaceInteropContainer?.TranslucentComponents(codes);
        }
        /// <summary>
        /// 取消构件半透明
        /// 取消半透明
        /// </summary>
        public async Task OpaqueComponents(List<string> elementIds)
        public async Task OpaqueComponents(List<string> codes)
        {
            await _bimfaceInteropContainer?.OpaqueComponents(elementIds);
            await _bimfaceInteropContainer?.OpaqueComponents(codes);
        }
        #endregion
@@ -400,7 +400,7 @@
        #endregion
        #region 业务标注引线标签
        #region 模型标注
        /// <summary>
        /// 设置业务标注引线标签
@@ -436,7 +436,7 @@
        #endregion
        #region 业务水流动画
        #region 水流动画
        /// <summary>
        /// 加载水流动画
@@ -558,12 +558,12 @@
        #endregion
        #region 业务监测点
        #region 监测点标记
        /// <summary>
        /// 设置业务监测点
        /// </summary>
        public async Task SetLogicMonitors(List<LogicMonitor> obj)
        public async Task SetLogicMonitors(List<LogicMonitorMarker> obj)
        {
            await _bimfaceInteropContainer?.SetLogicMonitors(obj);
        }