Worms4Editor/W4Gui/Components/StringList.Designer.cs

143 lines
6.7 KiB
C#

namespace W4Gui.Components
{
partial class StringList
{
/// <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()
{
this.tableWListAndButtons = new System.Windows.Forms.TableLayoutPanel();
this.lst = new System.Windows.Forms.ListBox();
this.addDelButtonDivisor = new System.Windows.Forms.TableLayoutPanel();
this.delBtn = new System.Windows.Forms.Button();
this.addBtn = new System.Windows.Forms.Button();
this.newEntry = new System.Windows.Forms.TextBox();
this.tableWListAndButtons.SuspendLayout();
this.addDelButtonDivisor.SuspendLayout();
this.SuspendLayout();
//
// tableWListAndButtons
//
this.tableWListAndButtons.ColumnCount = 1;
this.tableWListAndButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableWListAndButtons.Controls.Add(this.lst, 0, 0);
this.tableWListAndButtons.Controls.Add(this.addDelButtonDivisor, 0, 2);
this.tableWListAndButtons.Controls.Add(this.newEntry, 0, 1);
this.tableWListAndButtons.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableWListAndButtons.Location = new System.Drawing.Point(0, 0);
this.tableWListAndButtons.Name = "tableWListAndButtons";
this.tableWListAndButtons.RowCount = 2;
this.tableWListAndButtons.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableWListAndButtons.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableWListAndButtons.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableWListAndButtons.Size = new System.Drawing.Size(472, 203);
this.tableWListAndButtons.TabIndex = 21;
//
// lst
//
this.lst.Dock = System.Windows.Forms.DockStyle.Fill;
this.lst.FormattingEnabled = true;
this.lst.ItemHeight = 15;
this.lst.Location = new System.Drawing.Point(3, 3);
this.lst.Name = "lst";
this.lst.ScrollAlwaysVisible = true;
this.lst.Size = new System.Drawing.Size(466, 119);
this.lst.TabIndex = 0;
this.lst.SelectedIndexChanged += new System.EventHandler(this.lst_SelectedIndexChanged);
this.lst.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lst_KeyDown);
//
// addDelButtonDivisor
//
this.addDelButtonDivisor.ColumnCount = 2;
this.addDelButtonDivisor.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.addDelButtonDivisor.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.addDelButtonDivisor.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.addDelButtonDivisor.Controls.Add(this.delBtn, 1, 0);
this.addDelButtonDivisor.Controls.Add(this.addBtn, 0, 0);
this.addDelButtonDivisor.Dock = System.Windows.Forms.DockStyle.Fill;
this.addDelButtonDivisor.Location = new System.Drawing.Point(3, 157);
this.addDelButtonDivisor.Name = "addDelButtonDivisor";
this.addDelButtonDivisor.RowCount = 1;
this.addDelButtonDivisor.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.addDelButtonDivisor.Size = new System.Drawing.Size(466, 43);
this.addDelButtonDivisor.TabIndex = 1;
//
// delBtn
//
this.delBtn.Dock = System.Windows.Forms.DockStyle.Fill;
this.delBtn.Location = new System.Drawing.Point(236, 3);
this.delBtn.Name = "delBtn";
this.delBtn.Size = new System.Drawing.Size(227, 37);
this.delBtn.TabIndex = 1;
this.delBtn.Text = "Delete String";
this.delBtn.UseVisualStyleBackColor = true;
this.delBtn.Click += new System.EventHandler(this.delBtn_Click);
//
// addBtn
//
this.addBtn.Dock = System.Windows.Forms.DockStyle.Fill;
this.addBtn.Location = new System.Drawing.Point(3, 3);
this.addBtn.Name = "addBtn";
this.addBtn.Size = new System.Drawing.Size(227, 37);
this.addBtn.TabIndex = 0;
this.addBtn.Text = "Add String";
this.addBtn.UseVisualStyleBackColor = true;
this.addBtn.Click += new System.EventHandler(this.addBtn_Click);
//
// newEntry
//
this.newEntry.Dock = System.Windows.Forms.DockStyle.Fill;
this.newEntry.Location = new System.Drawing.Point(3, 128);
this.newEntry.Name = "newEntry";
this.newEntry.PlaceholderText = "Enter Text";
this.newEntry.Size = new System.Drawing.Size(466, 23);
this.newEntry.TabIndex = 4;
this.newEntry.KeyDown += new System.Windows.Forms.KeyEventHandler(this.newEntry_KeyDown);
//
// ListAddUpdateDel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableWListAndButtons);
this.Name = "ListAddUpdateDel";
this.Size = new System.Drawing.Size(472, 203);
this.tableWListAndButtons.ResumeLayout(false);
this.tableWListAndButtons.PerformLayout();
this.addDelButtonDivisor.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableWListAndButtons;
private ListBox lst;
private TableLayoutPanel addDelButtonDivisor;
private Button delBtn;
private Button addBtn;
private TextBox newEntry;
}
}