Worms4Editor/W4Gui/Components/VariablePanel/UIntVariablePanel.Designer.cs

183 lines
8.2 KiB
C#

namespace W4Gui.Components.VariablePanel
{
partial class UIntVariablePanel
{
/// <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.variableTabControl = new System.Windows.Forms.TabControl();
this.generalTab = new System.Windows.Forms.TabPage();
this.tblGeneral = new System.Windows.Forms.TableLayoutPanel();
this.lblVarFlags = new System.Windows.Forms.Label();
this.lblVarName = new System.Windows.Forms.Label();
this.selName = new System.Windows.Forms.TextBox();
this.selFlags = new W4Gui.Components.IntUpDown();
this.lbVarlValue = new System.Windows.Forms.Label();
this.selValue = new W4Gui.Components.UIntUpDown();
this.variableTabControl.SuspendLayout();
this.generalTab.SuspendLayout();
this.tblGeneral.SuspendLayout();
this.SuspendLayout();
//
// variableTabControl
//
this.variableTabControl.Controls.Add(this.generalTab);
this.variableTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.variableTabControl.HotTrack = true;
this.variableTabControl.Location = new System.Drawing.Point(0, 0);
this.variableTabControl.Name = "variableTabControl";
this.variableTabControl.SelectedIndex = 0;
this.variableTabControl.Size = new System.Drawing.Size(707, 419);
this.variableTabControl.TabIndex = 1;
//
// generalTab
//
this.generalTab.BackColor = System.Drawing.Color.Transparent;
this.generalTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.generalTab.Controls.Add(this.tblGeneral);
this.generalTab.Location = new System.Drawing.Point(4, 24);
this.generalTab.Name = "generalTab";
this.generalTab.Padding = new System.Windows.Forms.Padding(3);
this.generalTab.Size = new System.Drawing.Size(699, 391);
this.generalTab.TabIndex = 0;
this.generalTab.Text = "General";
//
// tblGeneral
//
this.tblGeneral.AutoSize = true;
this.tblGeneral.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset;
this.tblGeneral.ColumnCount = 2;
this.tblGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tblGeneral.Controls.Add(this.selValue, 0, 0);
this.tblGeneral.Controls.Add(this.lbVarlValue, 0, 0);
this.tblGeneral.Controls.Add(this.lblVarFlags, 0, 2);
this.tblGeneral.Controls.Add(this.lblVarName, 0, 1);
this.tblGeneral.Controls.Add(this.selName, 1, 1);
this.tblGeneral.Controls.Add(this.selFlags, 1, 2);
this.tblGeneral.Dock = System.Windows.Forms.DockStyle.Top;
this.tblGeneral.Location = new System.Drawing.Point(3, 3);
this.tblGeneral.Name = "tblGeneral";
this.tblGeneral.RowCount = 3;
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblGeneral.Size = new System.Drawing.Size(689, 95);
this.tblGeneral.TabIndex = 0;
//
// lblVarFlags
//
this.lblVarFlags.AutoSize = true;
this.lblVarFlags.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblVarFlags.Location = new System.Drawing.Point(5, 64);
this.lblVarFlags.Name = "lblVarFlags";
this.lblVarFlags.Size = new System.Drawing.Size(42, 29);
this.lblVarFlags.TabIndex = 17;
this.lblVarFlags.Text = "Flags:";
this.lblVarFlags.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblVarName
//
this.lblVarName.AutoSize = true;
this.lblVarName.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblVarName.Location = new System.Drawing.Point(5, 33);
this.lblVarName.Name = "lblVarName";
this.lblVarName.Size = new System.Drawing.Size(42, 29);
this.lblVarName.TabIndex = 0;
this.lblVarName.Text = "Name:";
this.lblVarName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// selName
//
this.selName.Dock = System.Windows.Forms.DockStyle.Top;
this.selName.Location = new System.Drawing.Point(55, 36);
this.selName.Name = "selName";
this.selName.PlaceholderText = "Variable Name";
this.selName.Size = new System.Drawing.Size(629, 23);
this.selName.TabIndex = 1;
//
// selFlags
//
this.selFlags.Dock = System.Windows.Forms.DockStyle.Top;
this.selFlags.Location = new System.Drawing.Point(55, 67);
this.selFlags.Name = "selFlags";
this.selFlags.Size = new System.Drawing.Size(629, 23);
this.selFlags.TabIndex = 18;
this.selFlags.Text = "0";
this.selFlags.Value = 0;
//
// lbVarlValue
//
this.lbVarlValue.AutoSize = true;
this.lbVarlValue.Dock = System.Windows.Forms.DockStyle.Fill;
this.lbVarlValue.Location = new System.Drawing.Point(5, 2);
this.lbVarlValue.Name = "lbVarlValue";
this.lbVarlValue.Size = new System.Drawing.Size(42, 29);
this.lbVarlValue.TabIndex = 19;
this.lbVarlValue.Text = "Value:";
this.lbVarlValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// selValue
//
this.selValue.Dock = System.Windows.Forms.DockStyle.Top;
this.selValue.Location = new System.Drawing.Point(55, 5);
this.selValue.Name = "selValue";
this.selValue.Size = new System.Drawing.Size(629, 23);
this.selValue.TabIndex = 20;
this.selValue.Text = "0";
this.selValue.Value = 0;
//
// IntVariablePanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LightGray;
this.Controls.Add(this.variableTabControl);
this.Name = "UIntVariablePanel";
this.Size = new System.Drawing.Size(707, 419);
this.variableTabControl.ResumeLayout(false);
this.generalTab.ResumeLayout(false);
this.generalTab.PerformLayout();
this.tblGeneral.ResumeLayout(false);
this.tblGeneral.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private TabControl variableTabControl;
private TabPage generalTab;
private TableLayoutPanel tblGeneral;
private Label lblVarName;
private TextBox selName;
private Label lblVarFlags;
private IntUpDown selFlags;
private UIntUpDown selValue;
private Label lbVarlValue;
}
}