FormLaunch.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. namespace CommonTest
  2. {
  3. partial class FormLaunch
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button_Astar = new System.Windows.Forms.Button();
  29. this.button_Collision = new System.Windows.Forms.Button();
  30. this.listView1 = new System.Windows.Forms.ListView();
  31. this.button_SceneGraph = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // button_Astar
  35. //
  36. this.button_Astar.Location = new System.Drawing.Point(12, 12);
  37. this.button_Astar.Name = "button_Astar";
  38. this.button_Astar.Size = new System.Drawing.Size(194, 35);
  39. this.button_Astar.TabIndex = 0;
  40. this.button_Astar.Text = "FormAstar";
  41. this.button_Astar.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  42. this.button_Astar.UseVisualStyleBackColor = true;
  43. this.button_Astar.Click += new System.EventHandler(this.button_Astar_Click);
  44. //
  45. // button_Collision
  46. //
  47. this.button_Collision.Location = new System.Drawing.Point(12, 53);
  48. this.button_Collision.Name = "button_Collision";
  49. this.button_Collision.Size = new System.Drawing.Size(194, 35);
  50. this.button_Collision.TabIndex = 1;
  51. this.button_Collision.Text = "FormCollision";
  52. this.button_Collision.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  53. this.button_Collision.UseVisualStyleBackColor = true;
  54. this.button_Collision.Click += new System.EventHandler(this.button_Collision_Click);
  55. //
  56. // listView1
  57. //
  58. this.listView1.Location = new System.Drawing.Point(305, 32);
  59. this.listView1.Name = "listView1";
  60. this.listView1.Size = new System.Drawing.Size(324, 254);
  61. this.listView1.TabIndex = 2;
  62. this.listView1.UseCompatibleStateImageBehavior = false;
  63. this.listView1.CacheVirtualItems += new System.Windows.Forms.CacheVirtualItemsEventHandler(this.listView1_CacheVirtualItems);
  64. //
  65. // button_SceneGraph
  66. //
  67. this.button_SceneGraph.Location = new System.Drawing.Point(12, 94);
  68. this.button_SceneGraph.Name = "button_SceneGraph";
  69. this.button_SceneGraph.Size = new System.Drawing.Size(194, 35);
  70. this.button_SceneGraph.TabIndex = 3;
  71. this.button_SceneGraph.Text = "FormSceneGraph2D";
  72. this.button_SceneGraph.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  73. this.button_SceneGraph.UseVisualStyleBackColor = true;
  74. this.button_SceneGraph.Click += new System.EventHandler(this.button_SceneGraph_Click);
  75. //
  76. // FormLaunch
  77. //
  78. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  79. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  80. this.ClientSize = new System.Drawing.Size(687, 324);
  81. this.Controls.Add(this.button_SceneGraph);
  82. this.Controls.Add(this.listView1);
  83. this.Controls.Add(this.button_Collision);
  84. this.Controls.Add(this.button_Astar);
  85. this.Name = "FormLaunch";
  86. this.Text = "FormLaunch";
  87. this.ResumeLayout(false);
  88. }
  89. #endregion
  90. private System.Windows.Forms.Button button_Astar;
  91. private System.Windows.Forms.Button button_Collision;
  92. private System.Windows.Forms.ListView listView1;
  93. private System.Windows.Forms.Button button_SceneGraph;
  94. }
  95. }