namespace CommonTest
{
partial class FormLaunch
{
///
/// 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.button_Astar = new System.Windows.Forms.Button();
this.button_Collision = new System.Windows.Forms.Button();
this.listView1 = new System.Windows.Forms.ListView();
this.button_SceneGraph = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button_Astar
//
this.button_Astar.Location = new System.Drawing.Point(12, 12);
this.button_Astar.Name = "button_Astar";
this.button_Astar.Size = new System.Drawing.Size(194, 35);
this.button_Astar.TabIndex = 0;
this.button_Astar.Text = "FormAstar";
this.button_Astar.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.button_Astar.UseVisualStyleBackColor = true;
this.button_Astar.Click += new System.EventHandler(this.button_Astar_Click);
//
// button_Collision
//
this.button_Collision.Location = new System.Drawing.Point(12, 53);
this.button_Collision.Name = "button_Collision";
this.button_Collision.Size = new System.Drawing.Size(194, 35);
this.button_Collision.TabIndex = 1;
this.button_Collision.Text = "FormCollision";
this.button_Collision.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.button_Collision.UseVisualStyleBackColor = true;
this.button_Collision.Click += new System.EventHandler(this.button_Collision_Click);
//
// listView1
//
this.listView1.Location = new System.Drawing.Point(305, 32);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(324, 254);
this.listView1.TabIndex = 2;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.CacheVirtualItems += new System.Windows.Forms.CacheVirtualItemsEventHandler(this.listView1_CacheVirtualItems);
//
// button_SceneGraph
//
this.button_SceneGraph.Location = new System.Drawing.Point(12, 94);
this.button_SceneGraph.Name = "button_SceneGraph";
this.button_SceneGraph.Size = new System.Drawing.Size(194, 35);
this.button_SceneGraph.TabIndex = 3;
this.button_SceneGraph.Text = "FormSceneGraph2D";
this.button_SceneGraph.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.button_SceneGraph.UseVisualStyleBackColor = true;
this.button_SceneGraph.Click += new System.EventHandler(this.button_SceneGraph_Click);
//
// FormLaunch
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(687, 324);
this.Controls.Add(this.button_SceneGraph);
this.Controls.Add(this.listView1);
this.Controls.Add(this.button_Collision);
this.Controls.Add(this.button_Astar);
this.Name = "FormLaunch";
this.Text = "FormLaunch";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button_Astar;
private System.Windows.Forms.Button button_Collision;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.Button button_SceneGraph;
}
}