MainForm.Designer.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. namespace AStar
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 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 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.pictureBox_map = new System.Windows.Forms.PictureBox();
  29. this.panel1 = new System.Windows.Forms.Panel();
  30. this.numericUpDown_y = new System.Windows.Forms.NumericUpDown();
  31. this.numericUpDown_x = new System.Windows.Forms.NumericUpDown();
  32. this.button_createMap = new System.Windows.Forms.Button();
  33. this.button_start = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_map)).BeginInit();
  35. this.panel1.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_y)).BeginInit();
  37. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_x)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // pictureBox_map
  41. //
  42. this.pictureBox_map.Dock = System.Windows.Forms.DockStyle.Fill;
  43. this.pictureBox_map.Location = new System.Drawing.Point(100, 0);
  44. this.pictureBox_map.Name = "pictureBox_map";
  45. this.pictureBox_map.Size = new System.Drawing.Size(975, 718);
  46. this.pictureBox_map.TabIndex = 0;
  47. this.pictureBox_map.TabStop = false;
  48. this.pictureBox_map.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox_map_Paint);
  49. this.pictureBox_map.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox_map_MouseDown);
  50. //
  51. // panel1
  52. //
  53. this.panel1.Controls.Add(this.numericUpDown_y);
  54. this.panel1.Controls.Add(this.numericUpDown_x);
  55. this.panel1.Controls.Add(this.button_createMap);
  56. this.panel1.Controls.Add(this.button_start);
  57. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  58. this.panel1.Location = new System.Drawing.Point(0, 0);
  59. this.panel1.Name = "panel1";
  60. this.panel1.Size = new System.Drawing.Size(100, 718);
  61. this.panel1.TabIndex = 1;
  62. //
  63. // numericUpDown_y
  64. //
  65. this.numericUpDown_y.Location = new System.Drawing.Point(12, 39);
  66. this.numericUpDown_y.Name = "numericUpDown_y";
  67. this.numericUpDown_y.Size = new System.Drawing.Size(75, 21);
  68. this.numericUpDown_y.TabIndex = 1;
  69. this.numericUpDown_y.Value = new decimal(new int[] {
  70. 15,
  71. 0,
  72. 0,
  73. 0});
  74. this.numericUpDown_y.ValueChanged += new System.EventHandler(this.numericUpDown_y_ValueChanged);
  75. //
  76. // numericUpDown_x
  77. //
  78. this.numericUpDown_x.Location = new System.Drawing.Point(12, 12);
  79. this.numericUpDown_x.Name = "numericUpDown_x";
  80. this.numericUpDown_x.Size = new System.Drawing.Size(75, 21);
  81. this.numericUpDown_x.TabIndex = 0;
  82. this.numericUpDown_x.Value = new decimal(new int[] {
  83. 15,
  84. 0,
  85. 0,
  86. 0});
  87. this.numericUpDown_x.ValueChanged += new System.EventHandler(this.numericUpDown_x_ValueChanged);
  88. //
  89. // button_createMap
  90. //
  91. this.button_createMap.Location = new System.Drawing.Point(12, 102);
  92. this.button_createMap.Name = "button_createMap";
  93. this.button_createMap.Size = new System.Drawing.Size(75, 23);
  94. this.button_createMap.TabIndex = 2;
  95. this.button_createMap.Text = "Create";
  96. this.button_createMap.UseVisualStyleBackColor = true;
  97. this.button_createMap.Click += new System.EventHandler(this.button_createMap_Click);
  98. //
  99. // button_start
  100. //
  101. this.button_start.Location = new System.Drawing.Point(12, 131);
  102. this.button_start.Name = "button_start";
  103. this.button_start.Size = new System.Drawing.Size(75, 23);
  104. this.button_start.TabIndex = 3;
  105. this.button_start.Text = "Start";
  106. this.button_start.UseVisualStyleBackColor = true;
  107. this.button_start.Click += new System.EventHandler(this.button_start_Click);
  108. //
  109. // MainForm
  110. //
  111. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  112. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  113. this.ClientSize = new System.Drawing.Size(1075, 718);
  114. this.Controls.Add(this.pictureBox_map);
  115. this.Controls.Add(this.panel1);
  116. this.Name = "MainForm";
  117. this.Text = "A* Viewer";
  118. this.Load += new System.EventHandler(this.MainForm_Load);
  119. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_map)).EndInit();
  120. this.panel1.ResumeLayout(false);
  121. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_y)).EndInit();
  122. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_x)).EndInit();
  123. this.ResumeLayout(false);
  124. }
  125. #endregion
  126. private System.Windows.Forms.PictureBox pictureBox_map;
  127. private System.Windows.Forms.Panel panel1;
  128. private System.Windows.Forms.Button button_start;
  129. private System.Windows.Forms.Button button_createMap;
  130. private System.Windows.Forms.NumericUpDown numericUpDown_y;
  131. private System.Windows.Forms.NumericUpDown numericUpDown_x;
  132. }
  133. }