WadScript
ScriptParamForm.Designer.cs
namespace CodeImp.DoomBuilder.DBXLua
{
partial clast ScriptParamForm
{
///
/// 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 Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.okbutton = new System.Windows.Forms.Button();
this.cancelbutton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.paramsview = new System.Windows.Forms.DataGridView();
this.Key = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.paramsview)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.paramsview, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(622, 433);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 2;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Controls.Add(this.okbutton, 0, 0);
this.tableLayoutPanel2.Controls.Add(this.cancelbutton, 1, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 396);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(616, 34);
this.tableLayoutPanel2.TabIndex = 0;
//
// okbutton
//
this.okbutton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okbutton.Dock = System.Windows.Forms.DockStyle.Fill;
this.okbutton.Location = new System.Drawing.Point(3, 3);
this.okbutton.Name = "okbutton";
this.okbutton.Size = new System.Drawing.Size(302, 28);
this.okbutton.TabIndex = 1;
this.okbutton.Text = "&OK";
this.okbutton.UseVisualStyleBackColor = true;
this.okbutton.Click += new System.EventHandler(this.okbutton_Click);
//
// cancelbutton
//
this.cancelbutton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelbutton.Dock = System.Windows.Forms.DockStyle.Fill;
this.cancelbutton.Location = new System.Drawing.Point(311, 3);
this.cancelbutton.Name = "cancelbutton";
this.cancelbutton.Size = new System.Drawing.Size(302, 28);
this.cancelbutton.TabIndex = 2;
this.cancelbutton.Text = "&Cancel and Undo";
this.cancelbutton.UseVisualStyleBackColor = true;
this.cancelbutton.Click += new System.EventHandler(this.cancelbutton_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(3, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(616, 17);
this.label1.TabIndex = 1;
this.label1.Text = "The script is asking for input:";
//
// paramsview
//
this.paramsview.AllowUserToAddRows = false;
this.paramsview.AllowUserToDeleteRows = false;
this.paramsview.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.paramsview.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders;
this.paramsview.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.paramsview.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Key,
this.Value});
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.paramsview.DefaultCellStyle = dataGridViewCellStyle1;
this.paramsview.Dock = System.Windows.Forms.DockStyle.Fill;
this.paramsview.Location = new System.Drawing.Point(3, 20);
this.paramsview.Name = "paramsview";
this.paramsview.RowHeadersVisible = false;
this.paramsview.RowTemplate.Height = 24;
this.paramsview.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
this.paramsview.Size = new System.Drawing.Size(616, 370);
this.paramsview.TabIndex = 0;
//
// Key
//
this.Key.HeaderText = "Key";
this.Key.Name = "Key";
this.Key.ReadOnly = true;
this.Key.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// Value
//
this.Value.HeaderText = "Value";
this.Value.Name = "Value";
this.Value.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// ScriptParamForm
//
this.AcceptButton = this.okbutton;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelbutton;
this.ClientSize = new System.Drawing.Size(622, 433);
this.Controls.Add(this.tableLayoutPanel1);
this.MinimizeBox = false;
this.Name = "ScriptParamForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Script Input?";
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.tableLayoutPanel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.paramsview)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button okbutton;
private System.Windows.Forms.Button cancelbutton;
private System.Windows.Forms.DataGridView paramsview;
private System.Windows.Forms.DataGridViewTextBoxColumn Key;
private System.Windows.Forms.DataGridViewTextBoxColumn Value;
}
}