I18NCommander/I18N Commander/UI WinForms/Components/SectionTree.Designer.cs

164 lines
8.2 KiB
C#
Raw Normal View History

2022-07-09 13:06:49 +00:00
namespace UI_WinForms.Components
{
partial class SectionTree
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
2022-07-10 08:34:48 +00:00
this.components = new System.ComponentModel.Container();
2022-07-09 13:06:49 +00:00
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();
2022-07-09 13:06:49 +00:00
this.treeView = new System.Windows.Forms.TreeView();
2022-07-10 08:34:48 +00:00
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
2022-07-09 13:06:49 +00:00
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);
2022-07-09 13:06:49 +00:00
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;
2022-07-10 08:34:48 +00:00
this.buttonAdd.FlatAppearance.BorderSize = 0;
this.buttonAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
2022-07-09 13:06:49 +00:00
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";
2022-07-10 08:34:48 +00:00
this.buttonAdd.Size = new System.Drawing.Size(60, 60);
2022-07-09 13:06:49 +00:00
this.buttonAdd.TabIndex = 0;
this.buttonAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
2022-07-10 08:34:48 +00:00
this.toolTip.SetToolTip(this.buttonAdd, "Add section");
2022-07-09 13:06:49 +00:00
this.buttonAdd.UseVisualStyleBackColor = true;
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
//
// buttonRemove
//
this.buttonRemove.AutoSize = true;
this.buttonRemove.Enabled = false;
2022-07-10 08:34:48 +00:00
this.buttonRemove.FlatAppearance.BorderSize = 0;
this.buttonRemove.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
2022-07-09 13:06:49 +00:00
this.buttonRemove.Image = global::UI_WinForms.Resources.Icons.icons8_delete_folder_512;
2022-07-10 08:34:48 +00:00
this.buttonRemove.Location = new System.Drawing.Point(69, 3);
2022-07-09 13:06:49 +00:00
this.buttonRemove.Name = "buttonRemove";
2022-07-10 08:34:48 +00:00
this.buttonRemove.Size = new System.Drawing.Size(60, 60);
2022-07-09 13:06:49 +00:00
this.buttonRemove.TabIndex = 1;
this.buttonRemove.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
2022-07-10 08:34:48 +00:00
this.toolTip.SetToolTip(this.buttonRemove, "Removes the selected section");
2022-07-09 13:06:49 +00:00
this.buttonRemove.UseVisualStyleBackColor = true;
this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click);
2022-07-09 13:06:49 +00:00
//
// 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);
//
2022-07-09 13:06:49 +00:00
// 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);
2022-07-09 13:06:49 +00:00
//
2022-07-10 08:34:48 +00:00
// 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";
//
2022-07-09 13:06:49 +00:00
// 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;
2022-07-10 08:34:48 +00:00
private ToolTip toolTip;
private Button buttonRename;
2022-07-09 13:06:49 +00:00
}
}