namespace ZeusServerTest
{
partial class FormTest
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.listView_Nodes = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.pictureBoxRoomLayer = new System.Windows.Forms.PictureBox();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.lbl_Status = new System.Windows.Forms.ToolStripStatusLabel();
this.timer2 = new System.Windows.Forms.Timer(this.components);
this.menu_Node = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuBtn_AddPlayer = new System.Windows.Forms.ToolStripMenuItem();
this.menuBtn_AddBots = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxRoomLayer)).BeginInit();
this.statusStrip1.SuspendLayout();
this.menu_Node.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 25);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.listView_Nodes);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.pictureBoxRoomLayer);
this.splitContainer1.Size = new System.Drawing.Size(1020, 623);
this.splitContainer1.SplitterDistance = 340;
this.splitContainer1.TabIndex = 0;
//
// listView_Nodes
//
this.listView_Nodes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3});
this.listView_Nodes.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView_Nodes.FullRowSelect = true;
this.listView_Nodes.GridLines = true;
this.listView_Nodes.HideSelection = false;
this.listView_Nodes.Location = new System.Drawing.Point(0, 0);
this.listView_Nodes.MultiSelect = false;
this.listView_Nodes.Name = "listView_Nodes";
this.listView_Nodes.Size = new System.Drawing.Size(340, 623);
this.listView_Nodes.TabIndex = 0;
this.listView_Nodes.UseCompatibleStateImageBehavior = false;
this.listView_Nodes.View = System.Windows.Forms.View.Details;
this.listView_Nodes.SelectedIndexChanged += new System.EventHandler(this.listView_Nodes_SelectedIndexChanged);
//
// columnHeader1
//
this.columnHeader1.Text = "ID";
this.columnHeader1.Width = 79;
//
// columnHeader2
//
this.columnHeader2.Text = "Name";
this.columnHeader2.Width = 135;
//
// columnHeader3
//
this.columnHeader3.Text = "PlayerCount";
this.columnHeader3.Width = 97;
//
// pictureBoxRoomLayer
//
this.pictureBoxRoomLayer.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBoxRoomLayer.Location = new System.Drawing.Point(0, 0);
this.pictureBoxRoomLayer.Name = "pictureBoxRoomLayer";
this.pictureBoxRoomLayer.Size = new System.Drawing.Size(676, 623);
this.pictureBoxRoomLayer.TabIndex = 0;
this.pictureBoxRoomLayer.TabStop = false;
this.pictureBoxRoomLayer.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBoxRoomLayer_Paint);
this.pictureBoxRoomLayer.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseDown);
this.pictureBoxRoomLayer.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseMove);
this.pictureBoxRoomLayer.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBoxRoomLayer_MouseUp);
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 2000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// toolStrip1
//
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(1020, 25);
this.toolStrip1.TabIndex = 1;
this.toolStrip1.Text = "toolStrip1";
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lbl_Status});
this.statusStrip1.Location = new System.Drawing.Point(0, 648);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1020, 22);
this.statusStrip1.TabIndex = 2;
this.statusStrip1.Text = "statusStrip1";
//
// lbl_Status
//
this.lbl_Status.Name = "lbl_Status";
this.lbl_Status.Size = new System.Drawing.Size(131, 17);
this.lbl_Status.Text = "toolStripStatusLabel1";
//
// timer2
//
this.timer2.Enabled = true;
this.timer2.Interval = 33;
this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
//
// menu_Node
//
this.menu_Node.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuBtn_AddPlayer,
this.menuBtn_AddBots});
this.menu_Node.Name = "menu_Node";
this.menu_Node.Size = new System.Drawing.Size(161, 70);
//
// menuBtn_AddPlayer
//
this.menuBtn_AddPlayer.Name = "menuBtn_AddPlayer";
this.menuBtn_AddPlayer.Size = new System.Drawing.Size(160, 22);
this.menuBtn_AddPlayer.Text = "添加玩家";
this.menuBtn_AddPlayer.Click += new System.EventHandler(this.menuBtn_AddPlayer_Click);
//
// menuBtn_AddBots
//
this.menuBtn_AddBots.Name = "menuBtn_AddBots";
this.menuBtn_AddBots.Size = new System.Drawing.Size(160, 22);
this.menuBtn_AddBots.Text = "添加一组机器人";
this.menuBtn_AddBots.Click += new System.EventHandler(this.menuBtn_AddBots_Click);
//
// FormTest
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1020, 670);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.statusStrip1);
this.Name = "FormTest";
this.Text = "Form1";
this.Load += new System.EventHandler(this.FormTest_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBoxRoomLayer)).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.menu_Node.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.ListView listView_Nodes;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel lbl_Status;
private System.Windows.Forms.Timer timer2;
private System.Windows.Forms.ContextMenuStrip menu_Node;
private System.Windows.Forms.ToolStripMenuItem menuBtn_AddPlayer;
private System.Windows.Forms.PictureBox pictureBoxRoomLayer;
private System.Windows.Forms.ToolStripMenuItem menuBtn_AddBots;
}
}