-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrackerHUD.Designer.cs
118 lines (112 loc) · 5.11 KB
/
TrackerHUD.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
109
110
111
112
113
114
115
116
117
118
namespace SRVTracker
{
partial class TrackerHUD
{
/// <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 Component 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()
{
this.labelTrackerLabels = new System.Windows.Forms.Label();
this.labelHeading = new System.Windows.Forms.Label();
this.labelAltitude = new System.Windows.Forms.Label();
this.labelLatitude = new System.Windows.Forms.Label();
this.labelLongitude = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// labelTrackerLabels
//
this.labelTrackerLabels.AutoSize = true;
this.labelTrackerLabels.BackColor = System.Drawing.Color.Black;
this.labelTrackerLabels.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
this.labelTrackerLabels.Location = new System.Drawing.Point(9, 6);
this.labelTrackerLabels.Name = "labelTrackerLabels";
this.labelTrackerLabels.Size = new System.Drawing.Size(236, 13);
this.labelTrackerLabels.TabIndex = 30;
this.labelTrackerLabels.Text = "Latitude Longitude Altitude Heading";
//
// labelHeading
//
this.labelHeading.AutoSize = true;
this.labelHeading.BackColor = System.Drawing.Color.Black;
this.labelHeading.ForeColor = System.Drawing.Color.Yellow;
this.labelHeading.Location = new System.Drawing.Point(198, 21);
this.labelHeading.Name = "labelHeading";
this.labelHeading.Size = new System.Drawing.Size(25, 13);
this.labelHeading.TabIndex = 29;
this.labelHeading.Text = "187";
//
// labelAltitude
//
this.labelAltitude.AutoSize = true;
this.labelAltitude.BackColor = System.Drawing.Color.Black;
this.labelAltitude.ForeColor = System.Drawing.Color.Yellow;
this.labelAltitude.Location = new System.Drawing.Point(146, 21);
this.labelAltitude.Name = "labelAltitude";
this.labelAltitude.Size = new System.Drawing.Size(13, 13);
this.labelAltitude.TabIndex = 28;
this.labelAltitude.Text = "0";
//
// labelLatitude
//
this.labelLatitude.AutoSize = true;
this.labelLatitude.BackColor = System.Drawing.Color.Black;
this.labelLatitude.ForeColor = System.Drawing.Color.Yellow;
this.labelLatitude.Location = new System.Drawing.Point(8, 21);
this.labelLatitude.Name = "labelLatitude";
this.labelLatitude.Size = new System.Drawing.Size(58, 13);
this.labelLatitude.TabIndex = 27;
this.labelLatitude.Text = "17.323208";
//
// labelLongitude
//
this.labelLongitude.AutoSize = true;
this.labelLongitude.BackColor = System.Drawing.Color.Black;
this.labelLongitude.ForeColor = System.Drawing.Color.Yellow;
this.labelLongitude.Location = new System.Drawing.Point(79, 21);
this.labelLongitude.Name = "labelLongitude";
this.labelLongitude.Size = new System.Drawing.Size(58, 13);
this.labelLongitude.TabIndex = 26;
this.labelLongitude.Text = "17.323208";
//
// TrackerHUD
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.Controls.Add(this.labelTrackerLabels);
this.Controls.Add(this.labelHeading);
this.Controls.Add(this.labelAltitude);
this.Controls.Add(this.labelLatitude);
this.Controls.Add(this.labelLongitude);
this.Name = "TrackerHUD";
this.Size = new System.Drawing.Size(260, 40);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelTrackerLabels;
private System.Windows.Forms.Label labelHeading;
private System.Windows.Forms.Label labelAltitude;
private System.Windows.Forms.Label labelLatitude;
private System.Windows.Forms.Label labelLongitude;
}
}