-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocationManager.Designer.cs
197 lines (191 loc) · 10.9 KB
/
LocationManager.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
namespace SRVTracker
{
partial class LocationManager
{
/// <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.components = new System.ComponentModel.Container();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonTrackLocation = new System.Windows.Forms.Button();
this.buttonSaveAs = new System.Windows.Forms.Button();
this.buttonEditLocation = new System.Windows.Forms.Button();
this.buttonAddLocation = new System.Windows.Forms.Button();
this.buttonDeleteLocation = new System.Windows.Forms.Button();
this.buttonLoadLocations = new System.Windows.Forms.Button();
this.buttonSaveLocations = new System.Windows.Forms.Button();
this.listBoxLocations = new System.Windows.Forms.ListBox();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox3
//
this.groupBox3.Controls.Add(this.buttonTrackLocation);
this.groupBox3.Controls.Add(this.buttonSaveAs);
this.groupBox3.Controls.Add(this.buttonEditLocation);
this.groupBox3.Controls.Add(this.buttonAddLocation);
this.groupBox3.Controls.Add(this.buttonDeleteLocation);
this.groupBox3.Controls.Add(this.buttonLoadLocations);
this.groupBox3.Controls.Add(this.buttonSaveLocations);
this.groupBox3.Controls.Add(this.listBoxLocations);
this.groupBox3.Controls.Add(this.buttonCancel);
this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox3.Location = new System.Drawing.Point(0, 0);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(281, 287);
this.groupBox3.TabIndex = 3;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Known Locations";
//
// buttonCancel
//
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(6, 258);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(86, 23);
this.buttonCancel.TabIndex = 8;
this.buttonCancel.Text = "Cancel";
this.buttonCancel.UseVisualStyleBackColor = true;
//
// buttonTrackLocation
//
this.buttonTrackLocation.Image = global::SRVTracker.Properties.Resources.Target_16x;
this.buttonTrackLocation.Location = new System.Drawing.Point(93, 258);
this.buttonTrackLocation.Name = "buttonTrackLocation";
this.buttonTrackLocation.Size = new System.Drawing.Size(23, 23);
this.buttonTrackLocation.TabIndex = 7;
this.toolTip1.SetToolTip(this.buttonTrackLocation, "Add current location");
this.buttonTrackLocation.UseVisualStyleBackColor = true;
this.buttonTrackLocation.Click += new System.EventHandler(this.buttonTrackLocation_Click);
//
// buttonSaveAs
//
this.buttonSaveAs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonSaveAs.Image = global::SRVTracker.Properties.Resources.SaveAs_16x;
this.buttonSaveAs.Location = new System.Drawing.Point(235, 258);
this.buttonSaveAs.Name = "buttonSaveAs";
this.buttonSaveAs.Size = new System.Drawing.Size(40, 23);
this.buttonSaveAs.TabIndex = 6;
this.toolTip1.SetToolTip(this.buttonSaveAs, "Save locations as");
this.buttonSaveAs.UseVisualStyleBackColor = true;
this.buttonSaveAs.Click += new System.EventHandler(this.buttonSaveAs_Click);
//
// buttonEditLocation
//
this.buttonEditLocation.Image = global::SRVTracker.Properties.Resources.Edit_16x;
this.buttonEditLocation.Location = new System.Drawing.Point(64, 258);
this.buttonEditLocation.Name = "buttonEditLocation";
this.buttonEditLocation.Size = new System.Drawing.Size(23, 23);
this.buttonEditLocation.TabIndex = 5;
this.toolTip1.SetToolTip(this.buttonEditLocation, "Edit selected location");
this.buttonEditLocation.UseVisualStyleBackColor = true;
this.buttonEditLocation.Click += new System.EventHandler(this.buttonEditLocation_Click);
//
// buttonAddLocation
//
this.buttonAddLocation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonAddLocation.Image = global::SRVTracker.Properties.Resources.Add_16x;
this.buttonAddLocation.Location = new System.Drawing.Point(6, 258);
this.buttonAddLocation.Name = "buttonAddLocation";
this.buttonAddLocation.Size = new System.Drawing.Size(23, 23);
this.buttonAddLocation.TabIndex = 4;
this.toolTip1.SetToolTip(this.buttonAddLocation, "Add new location (opens the Location window)");
this.buttonAddLocation.UseVisualStyleBackColor = true;
this.buttonAddLocation.Click += new System.EventHandler(this.buttonAddLocation_Click);
//
// buttonDeleteLocation
//
this.buttonDeleteLocation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonDeleteLocation.Image = global::SRVTracker.Properties.Resources.Remove_color_16x;
this.buttonDeleteLocation.Location = new System.Drawing.Point(35, 258);
this.buttonDeleteLocation.Name = "buttonDeleteLocation";
this.buttonDeleteLocation.Size = new System.Drawing.Size(23, 23);
this.buttonDeleteLocation.TabIndex = 3;
this.toolTip1.SetToolTip(this.buttonDeleteLocation, "Delete location from list");
this.buttonDeleteLocation.UseVisualStyleBackColor = true;
this.buttonDeleteLocation.Click += new System.EventHandler(this.buttonDeleteLocation_Click);
//
// buttonLoadLocations
//
this.buttonLoadLocations.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonLoadLocations.Image = global::SRVTracker.Properties.Resources.OpenFile_16x;
this.buttonLoadLocations.Location = new System.Drawing.Point(143, 258);
this.buttonLoadLocations.Name = "buttonLoadLocations";
this.buttonLoadLocations.Size = new System.Drawing.Size(40, 23);
this.buttonLoadLocations.TabIndex = 2;
this.toolTip1.SetToolTip(this.buttonLoadLocations, "Load locations from file");
this.buttonLoadLocations.UseVisualStyleBackColor = true;
this.buttonLoadLocations.Click += new System.EventHandler(this.buttonLoadLocations_Click);
//
// buttonSaveLocations
//
this.buttonSaveLocations.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonSaveLocations.Image = global::SRVTracker.Properties.Resources.Save_16x;
this.buttonSaveLocations.Location = new System.Drawing.Point(189, 258);
this.buttonSaveLocations.Name = "buttonSaveLocations";
this.buttonSaveLocations.Size = new System.Drawing.Size(40, 23);
this.buttonSaveLocations.TabIndex = 1;
this.toolTip1.SetToolTip(this.buttonSaveLocations, "Save locations");
this.buttonSaveLocations.UseVisualStyleBackColor = true;
this.buttonSaveLocations.Click += new System.EventHandler(this.buttonSaveLocations_Click);
//
// listBoxLocations
//
this.listBoxLocations.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listBoxLocations.DisplayMember = "Name";
this.listBoxLocations.FormattingEnabled = true;
this.listBoxLocations.Location = new System.Drawing.Point(6, 16);
this.listBoxLocations.Name = "listBoxLocations";
this.listBoxLocations.Size = new System.Drawing.Size(269, 238);
this.listBoxLocations.TabIndex = 0;
this.listBoxLocations.ValueMember = "Name";
this.listBoxLocations.SelectedIndexChanged += new System.EventHandler(this.listBoxLocations_SelectedIndexChanged);
//
// LocationManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.groupBox3);
this.Name = "LocationManager";
this.Size = new System.Drawing.Size(281, 287);
this.groupBox3.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Button buttonAddLocation;
private System.Windows.Forms.Button buttonDeleteLocation;
private System.Windows.Forms.Button buttonLoadLocations;
private System.Windows.Forms.Button buttonSaveLocations;
private System.Windows.Forms.ListBox listBoxLocations;
private System.Windows.Forms.Button buttonEditLocation;
private System.Windows.Forms.Button buttonSaveAs;
private System.Windows.Forms.Button buttonTrackLocation;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.Button buttonCancel;
}
}