-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
102 lines (96 loc) · 4.79 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
namespace FPPWR_path_finding
{
partial class Form1
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором форм Windows
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
this.btnCreateNewMap = new System.Windows.Forms.Button();
this.btnDrawNet = new System.Windows.Forms.Button();
this.btnCalculateRoute = new System.Windows.Forms.Button();
this.pointsCount = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// btnCreateNewMap
//
this.btnCreateNewMap.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.btnCreateNewMap.Location = new System.Drawing.Point(1064, 58);
this.btnCreateNewMap.Name = "btnCreateNewMap";
this.btnCreateNewMap.Size = new System.Drawing.Size(206, 62);
this.btnCreateNewMap.TabIndex = 1;
this.btnCreateNewMap.Text = "Create new map";
this.btnCreateNewMap.UseVisualStyleBackColor = true;
this.btnCreateNewMap.Click += new System.EventHandler(this.btnCreateNewMap_Click);
//
// btnDrawNet
//
this.btnDrawNet.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.btnDrawNet.Location = new System.Drawing.Point(1064, 126);
this.btnDrawNet.Name = "btnDrawNet";
this.btnDrawNet.Size = new System.Drawing.Size(206, 62);
this.btnDrawNet.TabIndex = 2;
this.btnDrawNet.Text = "Draw net";
this.btnDrawNet.UseVisualStyleBackColor = true;
this.btnDrawNet.Click += new System.EventHandler(this.btnDrawNet_Click);
//
// btnCalculateRoute
//
this.btnCalculateRoute.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.btnCalculateRoute.Location = new System.Drawing.Point(1064, 194);
this.btnCalculateRoute.Name = "btnCalculateRoute";
this.btnCalculateRoute.Size = new System.Drawing.Size(206, 62);
this.btnCalculateRoute.TabIndex = 3;
this.btnCalculateRoute.Text = "Calculate route";
this.btnCalculateRoute.UseVisualStyleBackColor = true;
this.btnCalculateRoute.Click += new System.EventHandler(this.btnCalculateRoute_Click);
//
// pointsCount
//
this.pointsCount.Location = new System.Drawing.Point(1064, 291);
this.pointsCount.Name = "pointsCount";
this.pointsCount.Size = new System.Drawing.Size(206, 22);
this.pointsCount.TabIndex = 4;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1282, 1055);
this.Controls.Add(this.pointsCount);
this.Controls.Add(this.btnCalculateRoute);
this.Controls.Add(this.btnDrawNet);
this.Controls.Add(this.btnCreateNewMap);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCreateNewMap;
private System.Windows.Forms.Button btnDrawNet;
private System.Windows.Forms.Button btnCalculateRoute;
private System.Windows.Forms.TextBox pointsCount;
}
}