From 058adb7d84fa39cf4fc5ff1ab6ea337db6c21423 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期二, 24 十二月 2024 09:42:57 +0800 Subject: [PATCH] 增加报告泵曲线信息字段 --- WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/12-report/02-helper/SimulationWorkingReportDlg.Designer.cs | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 47 insertions(+), 0 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/12-report/02-helper/SimulationWorkingReportDlg.Designer.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/12-report/02-helper/SimulationWorkingReportDlg.Designer.cs index f42ae6b..f90fb4f 100644 --- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/12-report/02-helper/SimulationWorkingReportDlg.Designer.cs +++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/12-report/02-helper/SimulationWorkingReportDlg.Designer.cs @@ -28,19 +28,66 @@ /// </summary> private void InitializeComponent() { + tablePanel1 = new DevExpress.Utils.Layout.TablePanel(); + simulationWorkingReportCtrl1 = new SimulationWorkingReportCtrl(); + generalOkAndCancelCtrl1 = new GeneralOkAndCancelCtrl(); + ((ISupportInitialize)tablePanel1).BeginInit(); + tablePanel1.SuspendLayout(); SuspendLayout(); + // + // tablePanel1 + // + tablePanel1.Columns.AddRange(new DevExpress.Utils.Layout.TablePanelColumn[] { new DevExpress.Utils.Layout.TablePanelColumn(DevExpress.Utils.Layout.TablePanelEntityStyle.Relative, 5F) }); + tablePanel1.Controls.Add(generalOkAndCancelCtrl1); + tablePanel1.Controls.Add(simulationWorkingReportCtrl1); + tablePanel1.Dock = DockStyle.Fill; + tablePanel1.Location = new Point(0, 0); + tablePanel1.Name = "tablePanel1"; + tablePanel1.Rows.AddRange(new DevExpress.Utils.Layout.TablePanelRow[] { new DevExpress.Utils.Layout.TablePanelRow(DevExpress.Utils.Layout.TablePanelEntityStyle.Relative, 26F), new DevExpress.Utils.Layout.TablePanelRow(DevExpress.Utils.Layout.TablePanelEntityStyle.AutoSize, 1F) }); + tablePanel1.Size = new Size(928, 698); + tablePanel1.TabIndex = 5; + // + // simulationWorkingReportCtrl1 + // + tablePanel1.SetColumn(simulationWorkingReportCtrl1, 0); + simulationWorkingReportCtrl1.Dock = DockStyle.Fill; + simulationWorkingReportCtrl1.Location = new Point(3, 3); + simulationWorkingReportCtrl1.Name = "simulationWorkingReportCtrl1"; + tablePanel1.SetRow(simulationWorkingReportCtrl1, 0); + simulationWorkingReportCtrl1.Size = new Size(922, 659); + simulationWorkingReportCtrl1.TabIndex = 1; + // + // generalOkAndCancelCtrl1 + // + generalOkAndCancelCtrl1.ButtonCancelMaxSize = new Size(100, 26); + generalOkAndCancelCtrl1.ButtonCancelMinSize = new Size(100, 26); + generalOkAndCancelCtrl1.ButtonOkMaxSize = new Size(100, 26); + generalOkAndCancelCtrl1.ButtonOkMinSize = new Size(100, 26); + tablePanel1.SetColumn(generalOkAndCancelCtrl1, 0); + generalOkAndCancelCtrl1.Location = new Point(3, 668); + generalOkAndCancelCtrl1.Name = "generalOkAndCancelCtrl1"; + tablePanel1.SetRow(generalOkAndCancelCtrl1, 1); + generalOkAndCancelCtrl1.Size = new Size(922, 27); + generalOkAndCancelCtrl1.TabIndex = 2; // // SimulationWorkingReportDlg // AutoScaleDimensions = new SizeF(7F, 14F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(928, 698); + Controls.Add(tablePanel1); Name = "SimulationWorkingReportDlg"; StartPosition = FormStartPosition.CenterParent; Text = "妯℃嫙宸ュ喌鎶ュ憡"; + ((ISupportInitialize)tablePanel1).EndInit(); + tablePanel1.ResumeLayout(false); ResumeLayout(false); } #endregion + + private DevExpress.Utils.Layout.TablePanel tablePanel1; + private SimulationWorkingReportCtrl simulationWorkingReportCtrl1; + private GeneralOkAndCancelCtrl generalOkAndCancelCtrl1; } } \ No newline at end of file -- Gitblit v1.9.3