namespace UI_WinForms.Components { partial class SectionTree { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.tableLayout = new System.Windows.Forms.TableLayoutPanel(); this.flowLayoutBottom = new System.Windows.Forms.FlowLayoutPanel(); this.buttonAdd = new System.Windows.Forms.Button(); this.buttonRemove = new System.Windows.Forms.Button(); this.buttonRename = new System.Windows.Forms.Button(); this.treeView = new System.Windows.Forms.TreeView(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); this.tableLayout.SuspendLayout(); this.flowLayoutBottom.SuspendLayout(); this.SuspendLayout(); // // tableLayout // 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.Absolute, 20F)); this.tableLayout.Controls.Add(this.flowLayoutBottom, 0, 1); this.tableLayout.Controls.Add(this.treeView, 0, 0); this.tableLayout.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayout.Location = new System.Drawing.Point(0, 0); this.tableLayout.Name = "tableLayout"; this.tableLayout.RowCount = 2; 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.Size = new System.Drawing.Size(296, 511); this.tableLayout.TabIndex = 0; // // flowLayoutBottom // this.flowLayoutBottom.Controls.Add(this.buttonAdd); this.flowLayoutBottom.Controls.Add(this.buttonRemove); this.flowLayoutBottom.Controls.Add(this.buttonRename); this.flowLayoutBottom.Dock = System.Windows.Forms.DockStyle.Fill; this.flowLayoutBottom.Location = new System.Drawing.Point(0, 445); this.flowLayoutBottom.Margin = new System.Windows.Forms.Padding(0); this.flowLayoutBottom.Name = "flowLayoutBottom"; this.flowLayoutBottom.Size = new System.Drawing.Size(296, 66); this.flowLayoutBottom.TabIndex = 0; // // buttonAdd // this.buttonAdd.AutoSize = true; this.buttonAdd.FlatAppearance.BorderSize = 0; this.buttonAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonAdd.Image = global::UI_WinForms.Resources.Icons.icons8_add_folder_512; this.buttonAdd.Location = new System.Drawing.Point(3, 3); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(60, 60); this.buttonAdd.TabIndex = 0; this.buttonAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.toolTip.SetToolTip(this.buttonAdd, "Add section"); this.buttonAdd.UseVisualStyleBackColor = true; this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click); // // buttonRemove // this.buttonRemove.AutoSize = true; this.buttonRemove.Enabled = false; this.buttonRemove.FlatAppearance.BorderSize = 0; this.buttonRemove.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonRemove.Image = global::UI_WinForms.Resources.Icons.icons8_delete_folder_512; this.buttonRemove.Location = new System.Drawing.Point(69, 3); this.buttonRemove.Name = "buttonRemove"; this.buttonRemove.Size = new System.Drawing.Size(60, 60); this.buttonRemove.TabIndex = 1; this.buttonRemove.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.toolTip.SetToolTip(this.buttonRemove, "Removes the selected section"); this.buttonRemove.UseVisualStyleBackColor = true; this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click); // // buttonRename // this.buttonRename.AutoSize = true; this.buttonRename.Enabled = false; this.buttonRename.FlatAppearance.BorderSize = 0; this.buttonRename.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonRename.Image = global::UI_WinForms.Resources.Icons.icons8_rename_512; this.buttonRename.Location = new System.Drawing.Point(135, 3); this.buttonRename.Name = "buttonRename"; this.buttonRename.Size = new System.Drawing.Size(60, 60); this.buttonRename.TabIndex = 2; this.buttonRename.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.toolTip.SetToolTip(this.buttonRename, "Rename the selected section"); this.buttonRename.UseVisualStyleBackColor = true; this.buttonRename.Click += new System.EventHandler(this.buttonRename_Click); // // treeView // this.treeView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.treeView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView.HideSelection = false; this.treeView.ItemHeight = 50; this.treeView.Location = new System.Drawing.Point(3, 3); this.treeView.Name = "treeView"; this.treeView.Size = new System.Drawing.Size(290, 439); this.treeView.TabIndex = 1; this.treeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseClick); // // toolTip // this.toolTip.AutoPopDelay = 30000; this.toolTip.InitialDelay = 500; this.toolTip.ReshowDelay = 100; this.toolTip.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info; this.toolTip.ToolTipTitle = "Help"; // // SectionTree // this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.Controls.Add(this.tableLayout); this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); this.Name = "SectionTree"; this.Size = new System.Drawing.Size(296, 511); this.tableLayout.ResumeLayout(false); this.flowLayoutBottom.ResumeLayout(false); this.flowLayoutBottom.PerformLayout(); this.ResumeLayout(false); } #endregion private TableLayoutPanel tableLayout; private FlowLayoutPanel flowLayoutBottom; private Button buttonAdd; private Button buttonRemove; private TreeView treeView; private ToolTip toolTip; private Button buttonRename; } }