Forms
StartingItemEditForm.Designer.cs
namespace MMR.UI.Forms
{
partial clast StartingItemEditForm
{
///
/// 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StartingItemEditForm));
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.lStartingItems = new System.Windows.Forms.ListView();
this.tStartingItemsString = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1.SuspendLayout();
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.lStartingItems, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.tStartingItemsString, 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 = 2;
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, 28F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(439, 503);
this.tableLayoutPanel1.TabIndex = 0;
//
// lStartingItems
//
this.lStartingItems.CheckBoxes = true;
this.lStartingItems.Dock = System.Windows.Forms.DockStyle.Fill;
this.lStartingItems.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.lStartingItems.Location = new System.Drawing.Point(3, 3);
this.lStartingItems.Name = "lStartingItems";
this.lStartingItems.Size = new System.Drawing.Size(433, 469);
this.lStartingItems.TabIndex = 0;
this.lStartingItems.UseCompatibleStateImageBehavior = false;
this.lStartingItems.View = System.Windows.Forms.View.List;
this.lStartingItems.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lStartingItems_ItemChecked);
//
// tStartingItemsString
//
this.tStartingItemsString.Dock = System.Windows.Forms.DockStyle.Fill;
this.tStartingItemsString.Location = new System.Drawing.Point(3, 478);
this.tStartingItemsString.Name = "tStartingItemsString";
this.tStartingItemsString.Size = new System.Drawing.Size(433, 20);
this.tStartingItemsString.TabIndex = 1;
this.tStartingItemsString.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tStartingItemsString_KeyDown);
//
// StartingItemEditForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(439, 503);
this.Controls.Add(this.tableLayoutPanel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "StartingItemEditForm";
this.Text = "Starting Item Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.StartingItemEditForm_FormClosing);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.ListView lStartingItems;
private System.Windows.Forms.TextBox tStartingItemsString;
}
}