Removed bottom toolbar

This commit is contained in:
Thorsten Sommer 2022-07-23 23:20:57 +02:00
parent 780b012aef
commit c15f221d15
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -29,7 +29,6 @@
private void InitializeComponent() private void InitializeComponent()
{ {
this.tableLayout = new System.Windows.Forms.TableLayoutPanel(); this.tableLayout = new System.Windows.Forms.TableLayoutPanel();
this.flowLayoutBottom = new System.Windows.Forms.FlowLayoutPanel();
this.splitContainerLR = new System.Windows.Forms.SplitContainer(); this.splitContainerLR = new System.Windows.Forms.SplitContainer();
this.sectionTree = new UI_WinForms.Components.SectionTree(); this.sectionTree = new UI_WinForms.Components.SectionTree();
this.splitContainerRTB = new System.Windows.Forms.SplitContainer(); this.splitContainerRTB = new System.Windows.Forms.SplitContainer();
@ -48,27 +47,16 @@
// //
this.tableLayout.ColumnCount = 1; this.tableLayout.ColumnCount = 1;
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayout.Controls.Add(this.flowLayoutBottom, 0, 1);
this.tableLayout.Controls.Add(this.splitContainerLR, 0, 0); this.tableLayout.Controls.Add(this.splitContainerLR, 0, 0);
this.tableLayout.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayout.Location = new System.Drawing.Point(0, 0); this.tableLayout.Location = new System.Drawing.Point(0, 0);
this.tableLayout.Name = "tableLayout"; this.tableLayout.Name = "tableLayout";
this.tableLayout.RowCount = 2; this.tableLayout.RowCount = 1;
this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 66F)); this.tableLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayout.Size = new System.Drawing.Size(965, 603); this.tableLayout.Size = new System.Drawing.Size(965, 603);
this.tableLayout.TabIndex = 0; this.tableLayout.TabIndex = 0;
// //
// flowLayoutBottom
//
this.flowLayoutBottom.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutBottom.Location = new System.Drawing.Point(0, 537);
this.flowLayoutBottom.Margin = new System.Windows.Forms.Padding(0);
this.flowLayoutBottom.Name = "flowLayoutBottom";
this.flowLayoutBottom.Size = new System.Drawing.Size(965, 66);
this.flowLayoutBottom.TabIndex = 0;
//
// splitContainerLR // splitContainerLR
// //
this.splitContainerLR.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.splitContainerLR.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
@ -85,7 +73,7 @@
// splitContainerLR.Panel2 // splitContainerLR.Panel2
// //
this.splitContainerLR.Panel2.Controls.Add(this.splitContainerRTB); this.splitContainerLR.Panel2.Controls.Add(this.splitContainerRTB);
this.splitContainerLR.Size = new System.Drawing.Size(959, 531); this.splitContainerLR.Size = new System.Drawing.Size(959, 597);
this.splitContainerLR.SplitterDistance = 319; this.splitContainerLR.SplitterDistance = 319;
this.splitContainerLR.TabIndex = 1; this.splitContainerLR.TabIndex = 1;
// //
@ -95,7 +83,7 @@
this.sectionTree.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.sectionTree.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.sectionTree.Location = new System.Drawing.Point(0, 0); this.sectionTree.Location = new System.Drawing.Point(0, 0);
this.sectionTree.Name = "sectionTree"; this.sectionTree.Name = "sectionTree";
this.sectionTree.Size = new System.Drawing.Size(317, 529); this.sectionTree.Size = new System.Drawing.Size(317, 595);
this.sectionTree.TabIndex = 0; this.sectionTree.TabIndex = 0;
// //
// splitContainerRTB // splitContainerRTB
@ -111,7 +99,7 @@
// //
this.splitContainerRTB.Panel1.Controls.Add(this.textElements); this.splitContainerRTB.Panel1.Controls.Add(this.textElements);
this.splitContainerRTB.Panel1MinSize = 340; this.splitContainerRTB.Panel1MinSize = 340;
this.splitContainerRTB.Size = new System.Drawing.Size(636, 531); this.splitContainerRTB.Size = new System.Drawing.Size(636, 597);
this.splitContainerRTB.SplitterDistance = 340; this.splitContainerRTB.SplitterDistance = 340;
this.splitContainerRTB.TabIndex = 0; this.splitContainerRTB.TabIndex = 0;
// //
@ -147,7 +135,6 @@
#endregion #endregion
private TableLayoutPanel tableLayout; private TableLayoutPanel tableLayout;
private FlowLayoutPanel flowLayoutBottom;
private SplitContainer splitContainerLR; private SplitContainer splitContainerLR;
private SplitContainer splitContainerRTB; private SplitContainer splitContainerRTB;
private SectionTree sectionTree; private SectionTree sectionTree;