lixiaojun
2024-07-30 f45bba0b5ecf73df67af6cb60e57ea956d82a8ab
WinFrmUI/HStation.WinFrmUI.Xhs.Core/02-project/02-bimface/ViewXhsProjectBimfacePage.cs
@@ -5,6 +5,9 @@
        public ViewXhsProjectBimfacePage()
        {
            InitializeComponent();
            this.PageTitle.Caption = "模型视图";
            this.PageTitle.HeaderSvgImage = this.svgImg32[0];
            this.PageTitle.SvgImageSize = new Size(24, 24);
        }
        private XhsProjectStdDto _project = null;
@@ -16,7 +19,7 @@
        public async Task SetBindingData(long projectId)
        {
            _project = await new BLL.XhsProjectStd().GetByID(projectId);
            this.PageTitle.Caption = $"{_project?.Name}-BIMFACE模型视图";
            this.PageTitle.Caption = $"{_project?.Name}\n模型视图";
        }
        /// <summary>
@@ -26,7 +29,7 @@
        public void SetBindingData(HStation.Dto.XhsProjectStdDto project)
        {
            _project = project;
            this.PageTitle.Caption = $"{project.Name}-BIMFACE模型视图";
            this.PageTitle.Caption = $"{_project?.Name}\n模型视图";
        }
        /// <summary>