| | |
| | | public ViewXhsProjectBimfacePage() |
| | | { |
| | | InitializeComponent(); |
| | | this.PageTitle.Caption = "模型视图"; |
| | | this.PageTitle.HeaderSvgImage = this.svgImg32[0]; |
| | | this.PageTitle.SvgImageSize = new Size(24, 24); |
| | | } |
| | | |
| | | private XhsProjectStdDto _project = null; |
| | |
| | | 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> |
| | |
| | | public void SetBindingData(HStation.Dto.XhsProjectStdDto project) |
| | | { |
| | | _project = project; |
| | | this.PageTitle.Caption = $"{project.Name}-BIMFACE模型视图"; |
| | | this.PageTitle.Caption = $"{_project?.Name}\n模型视图"; |
| | | } |
| | | |
| | | /// <summary> |