1. 방향성 생성 및 중간에 길이 크로스 될때 들어갈 수 있는 기능 구현 중

2. 4방향 설정 추가
This commit is contained in:
김민구
2020-12-15 18:31:38 +09:00
parent 66a477808a
commit f4ddd11c7b
10 changed files with 115 additions and 17 deletions

28
Form1.Designer.cs generated
View File

@@ -41,6 +41,8 @@
this.btn_SetRoadPoint = new System.Windows.Forms.Button();
this.btn_SetLeftRoadPoint = new System.Windows.Forms.Button();
this.btn_SetRightRoadPoint = new System.Windows.Forms.Button();
this.btn_SetUpRoadPoint = new System.Windows.Forms.Button();
this.btn_SetDownRoadPoint = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// pn_Table
@@ -175,12 +177,36 @@
this.btn_SetRightRoadPoint.UseVisualStyleBackColor = true;
this.btn_SetRightRoadPoint.Click += new System.EventHandler(this.btn_SetRightRoadPoint_Click);
//
// btn_SetUpRoadPoint
//
this.btn_SetUpRoadPoint.Font = new System.Drawing.Font("Consolas", 10F);
this.btn_SetUpRoadPoint.Location = new System.Drawing.Point(818, 408);
this.btn_SetUpRoadPoint.Name = "btn_SetUpRoadPoint";
this.btn_SetUpRoadPoint.Size = new System.Drawing.Size(125, 30);
this.btn_SetUpRoadPoint.TabIndex = 15;
this.btn_SetUpRoadPoint.Text = "UpRoadPoint";
this.btn_SetUpRoadPoint.UseVisualStyleBackColor = true;
this.btn_SetUpRoadPoint.Click += new System.EventHandler(this.btn_SetUpRoadPoint_Click);
//
// btn_SetDownRoadPoint
//
this.btn_SetDownRoadPoint.Font = new System.Drawing.Font("Consolas", 10F);
this.btn_SetDownRoadPoint.Location = new System.Drawing.Point(820, 453);
this.btn_SetDownRoadPoint.Name = "btn_SetDownRoadPoint";
this.btn_SetDownRoadPoint.Size = new System.Drawing.Size(125, 30);
this.btn_SetDownRoadPoint.TabIndex = 16;
this.btn_SetDownRoadPoint.Text = "DownRoadPoint";
this.btn_SetDownRoadPoint.UseVisualStyleBackColor = true;
this.btn_SetDownRoadPoint.Click += new System.EventHandler(this.btn_SetDownRoadPoint_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.GrayText;
this.ClientSize = new System.Drawing.Size(949, 826);
this.Controls.Add(this.btn_SetDownRoadPoint);
this.Controls.Add(this.btn_SetUpRoadPoint);
this.Controls.Add(this.btn_SetRightRoadPoint);
this.Controls.Add(this.btn_SetLeftRoadPoint);
this.Controls.Add(this.btn_SetRoadPoint);
@@ -217,6 +243,8 @@
private System.Windows.Forms.Button btn_SetRoadPoint;
private System.Windows.Forms.Button btn_SetLeftRoadPoint;
private System.Windows.Forms.Button btn_SetRightRoadPoint;
private System.Windows.Forms.Button btn_SetUpRoadPoint;
private System.Windows.Forms.Button btn_SetDownRoadPoint;
}
}