-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAddStationDialog.Designer.cs
108 lines (102 loc) · 4.47 KB
/
AddStationDialog.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
102
103
104
105
106
107
108
namespace EliteDangerousTradingAssistant
{
partial class AddStationDialog
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddStationDialog));
this.SystemLabel = new System.Windows.Forms.Label();
this.SystemTextBox = new System.Windows.Forms.TextBox();
this.StationLabel = new System.Windows.Forms.Label();
this.StationTextBox = new System.Windows.Forms.TextBox();
this.AddStationButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// SystemLabel
//
this.SystemLabel.AutoSize = true;
this.SystemLabel.Location = new System.Drawing.Point(13, 13);
this.SystemLabel.Name = "SystemLabel";
this.SystemLabel.Size = new System.Drawing.Size(41, 13);
this.SystemLabel.TabIndex = 0;
this.SystemLabel.Text = "System";
//
// SystemTextBox
//
this.SystemTextBox.Enabled = false;
this.SystemTextBox.Location = new System.Drawing.Point(60, 10);
this.SystemTextBox.Name = "SystemTextBox";
this.SystemTextBox.Size = new System.Drawing.Size(250, 20);
this.SystemTextBox.TabIndex = 1;
//
// StationLabel
//
this.StationLabel.AutoSize = true;
this.StationLabel.Location = new System.Drawing.Point(13, 40);
this.StationLabel.Name = "StationLabel";
this.StationLabel.Size = new System.Drawing.Size(40, 13);
this.StationLabel.TabIndex = 2;
this.StationLabel.Text = "Station";
//
// StationTextBox
//
this.StationTextBox.Location = new System.Drawing.Point(60, 37);
this.StationTextBox.Name = "StationTextBox";
this.StationTextBox.Size = new System.Drawing.Size(250, 20);
this.StationTextBox.TabIndex = 3;
//
// AddStationButton
//
this.AddStationButton.Location = new System.Drawing.Point(60, 63);
this.AddStationButton.Name = "AddStationButton";
this.AddStationButton.Size = new System.Drawing.Size(250, 23);
this.AddStationButton.TabIndex = 4;
this.AddStationButton.Text = "Add Station";
this.AddStationButton.UseVisualStyleBackColor = true;
this.AddStationButton.Click += new System.EventHandler(this.AddStationButton_Click);
//
// AddStation
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(322, 91);
this.Controls.Add(this.AddStationButton);
this.Controls.Add(this.StationTextBox);
this.Controls.Add(this.StationLabel);
this.Controls.Add(this.SystemTextBox);
this.Controls.Add(this.SystemLabel);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "AddStation";
this.Text = "Add a Station";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label SystemLabel;
private System.Windows.Forms.TextBox SystemTextBox;
private System.Windows.Forms.Label StationLabel;
private System.Windows.Forms.TextBox StationTextBox;
private System.Windows.Forms.Button AddStationButton;
}
}