From 5066a3d90ab19f8380dbb4159d57b0b8e3f17649 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期四, 20 三月 2025 15:31:11 +0800 Subject: [PATCH] L3d基础功能完善 --- Yw.WinFrmUI.Test.Core/MainForm.Designer.cs | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 55 insertions(+), 1 deletions(-) diff --git a/Yw.WinFrmUI.Test.Core/MainForm.Designer.cs b/Yw.WinFrmUI.Test.Core/MainForm.Designer.cs index fce3859..21c71e2 100644 --- a/Yw.WinFrmUI.Test.Core/MainForm.Designer.cs +++ b/Yw.WinFrmUI.Test.Core/MainForm.Designer.cs @@ -28,20 +28,74 @@ /// </summary> private void InitializeComponent() { + splitContainer1 = new SplitContainer(); + propertyGrid2 = new PropertyGrid(); + propertyGrid1 = new PropertyGrid(); + propertyGrid3 = new PropertyGrid(); + ((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit(); + splitContainer1.Panel1.SuspendLayout(); + splitContainer1.SuspendLayout(); SuspendLayout(); + // + // splitContainer1 + // + splitContainer1.Dock = DockStyle.Fill; + splitContainer1.Location = new Point(0, 0); + splitContainer1.Name = "splitContainer1"; + // + // splitContainer1.Panel1 + // + splitContainer1.Panel1.Controls.Add(propertyGrid3); + splitContainer1.Panel1.Controls.Add(propertyGrid2); + splitContainer1.Panel1.Controls.Add(propertyGrid1); + splitContainer1.Size = new Size(1084, 674); + splitContainer1.SplitterDistance = 311; + splitContainer1.TabIndex = 0; + // + // propertyGrid2 + // + propertyGrid2.Dock = DockStyle.Top; + propertyGrid2.Location = new Point(0, 223); + propertyGrid2.Name = "propertyGrid2"; + propertyGrid2.Size = new Size(311, 262); + propertyGrid2.TabIndex = 1; + // + // propertyGrid1 + // + propertyGrid1.Dock = DockStyle.Top; + propertyGrid1.Location = new Point(0, 0); + propertyGrid1.Name = "propertyGrid1"; + propertyGrid1.Size = new Size(311, 223); + propertyGrid1.TabIndex = 0; + // + // propertyGrid3 + // + propertyGrid3.Dock = DockStyle.Top; + propertyGrid3.Location = new Point(0, 485); + propertyGrid3.Name = "propertyGrid3"; + propertyGrid3.Size = new Size(311, 186); + propertyGrid3.TabIndex = 2; // // MainForm // AutoScaleDimensions = new SizeF(7F, 17F); AutoScaleMode = AutoScaleMode.Font; - ClientSize = new Size(800, 450); + ClientSize = new Size(1084, 674); + Controls.Add(splitContainer1); Name = "MainForm"; Text = "MainForm"; + splitContainer1.Panel1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit(); + splitContainer1.ResumeLayout(false); ResumeLayout(false); } #endregion + private SplitContainer splitContainer1; + private PropertyGrid propertyGrid2; + private PropertyGrid propertyGrid1; + private PropertyGrid propertyGrid3; } } \ No newline at end of file -- Gitblit v1.9.3