namespace iQuest
{
partial class frmAddMob
{
///
/// 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()
{
this.lstMobs = new System.Windows.Forms.ListBox();
this.txtSearch = new System.Windows.Forms.TextBox();
this.btnSearch = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.txtMobID = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.lstIsKill = new System.Windows.Forms.ComboBox();
this.txtAmount = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lstMobs
//
this.lstMobs.FormattingEnabled = true;
this.lstMobs.Location = new System.Drawing.Point(7, 31);
this.lstMobs.Name = "lstMobs";
this.lstMobs.Size = new System.Drawing.Size(193, 407);
this.lstMobs.TabIndex = 0;
this.lstMobs.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lstMobs_MouseDoubleClick);
this.lstMobs.SelectedIndexChanged += new System.EventHandler(this.lstMobs_SelectedIndexChanged);
//
// txtSearch
//
this.txtSearch.Location = new System.Drawing.Point(7, 5);
this.txtSearch.Name = "txtSearch";
this.txtSearch.Size = new System.Drawing.Size(100, 20);
this.txtSearch.TabIndex = 1;
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(113, 3);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(87, 22);
this.btnSearch.TabIndex = 2;
this.btnSearch.Text = "Search";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(206, 31);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(42, 13);
this.label1.TabIndex = 3;
this.label1.Text = "MobID:";
//
// txtMobID
//
this.txtMobID.Location = new System.Drawing.Point(268, 28);
this.txtMobID.Name = "txtMobID";
this.txtMobID.Size = new System.Drawing.Size(57, 20);
this.txtMobID.TabIndex = 4;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(206, 75);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(30, 13);
this.label2.TabIndex = 5;
this.label2.Text = "isKill:";
//
// lstIsKill
//
this.lstIsKill.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.lstIsKill.FormattingEnabled = true;
this.lstIsKill.Location = new System.Drawing.Point(268, 72);
this.lstIsKill.Name = "lstIsKill";
this.lstIsKill.Size = new System.Drawing.Size(57, 21);
this.lstIsKill.TabIndex = 6;
//
// txtAmount
//
this.txtAmount.Location = new System.Drawing.Point(270, 118);
this.txtAmount.Name = "txtAmount";
this.txtAmount.Size = new System.Drawing.Size(55, 20);
this.txtAmount.TabIndex = 7;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(206, 121);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(46, 13);
this.label3.TabIndex = 8;
this.label3.Text = "Amount:";
//
// button1
//
this.button1.Location = new System.Drawing.Point(224, 157);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(88, 30);
this.button1.TabIndex = 9;
this.button1.Text = "Add Monster";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// frmAddMob
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(350, 449);
this.Controls.Add(this.button1);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtAmount);
this.Controls.Add(this.lstIsKill);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtMobID);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.txtSearch);
this.Controls.Add(this.lstMobs);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "frmAddMob";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Add Monster - NPC";
this.Load += new System.EventHandler(this.frmAddMob_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox lstMobs;
private System.Windows.Forms.TextBox txtSearch;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtMobID;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox lstIsKill;
private System.Windows.Forms.TextBox txtAmount;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button button1;
}
}