-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExportDataSheetForm.Designer.cs
351 lines (347 loc) · 16.8 KB
/
ExportDataSheetForm.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
namespace Planetoid_DB
{
partial class ExportDataSheetForm
{
/// <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()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportDataSheetForm));
buttonExportAsJson = new Krypton.Toolkit.KryptonButton();
buttonExportAsTxt = new Krypton.Toolkit.KryptonButton();
buttonExportAsXml = new Krypton.Toolkit.KryptonButton();
buttonExportAsHtml = new Krypton.Toolkit.KryptonButton();
statusStrip = new Krypton.Toolkit.KryptonStatusStrip();
labelInformation = new ToolStripStatusLabel();
toolTip = new ToolTip(components);
buttonUnmarkAll = new Krypton.Toolkit.KryptonButton();
buttonMarkAll = new Krypton.Toolkit.KryptonButton();
toolStripContainer = new ToolStripContainer();
panel = new Krypton.Toolkit.KryptonPanel();
checkedListBoxOrbitalElements = new Krypton.Toolkit.KryptonCheckedListBox();
saveFileDialogTxt = new SaveFileDialog();
saveFileDialogHtml = new SaveFileDialog();
saveFileDialogXml = new SaveFileDialog();
saveFileDialogJson = new SaveFileDialog();
statusStrip.SuspendLayout();
toolStripContainer.BottomToolStripPanel.SuspendLayout();
toolStripContainer.ContentPanel.SuspendLayout();
toolStripContainer.SuspendLayout();
((System.ComponentModel.ISupportInitialize)panel).BeginInit();
panel.SuspendLayout();
SuspendLayout();
//
// buttonExportAsJson
//
buttonExportAsJson.AccessibleDescription = "Exports the data sheet as JSON file";
buttonExportAsJson.AccessibleName = "Export as JSON";
buttonExportAsJson.AccessibleRole = AccessibleRole.PushButton;
buttonExportAsJson.CornerRoundingRadius = -1F;
buttonExportAsJson.Location = new Point(348, 245);
buttonExportAsJson.Margin = new Padding(4, 3, 4, 3);
buttonExportAsJson.Name = "buttonExportAsJson";
buttonExportAsJson.Size = new Size(111, 46);
buttonExportAsJson.StateCommon.Content.Image.ImageV = Krypton.Toolkit.PaletteRelativeAlign.Near;
buttonExportAsJson.TabIndex = 6;
toolTip.SetToolTip(buttonExportAsJson, "Export as JSON");
buttonExportAsJson.Values.Image = Properties.Resources.silk_page_white_code;
buttonExportAsJson.Values.Text = "Export as JSON";
buttonExportAsJson.Click += ButtonExportAsJson_Click;
buttonExportAsJson.Enter += SetStatusbar_Enter;
buttonExportAsJson.Leave += ClearStatusbar_Leave;
buttonExportAsJson.MouseEnter += SetStatusbar_Enter;
buttonExportAsJson.MouseLeave += ClearStatusbar_Leave;
//
// buttonExportAsTxt
//
buttonExportAsTxt.AccessibleDescription = "Exports the data sheet as text file";
buttonExportAsTxt.AccessibleName = "Export as TXT";
buttonExportAsTxt.AccessibleRole = AccessibleRole.PushButton;
buttonExportAsTxt.CornerRoundingRadius = -1F;
buttonExportAsTxt.Location = new Point(348, 85);
buttonExportAsTxt.Margin = new Padding(4, 3, 4, 3);
buttonExportAsTxt.Name = "buttonExportAsTxt";
buttonExportAsTxt.Size = new Size(112, 46);
buttonExportAsTxt.StateCommon.Content.Image.ImageV = Krypton.Toolkit.PaletteRelativeAlign.Near;
buttonExportAsTxt.TabIndex = 3;
toolTip.SetToolTip(buttonExportAsTxt, "Export as TXT");
buttonExportAsTxt.Values.Image = Properties.Resources.silk_page_white_text;
buttonExportAsTxt.Values.Text = "Export as TXT";
buttonExportAsTxt.Click += ButtonExportAsTxt_Click;
buttonExportAsTxt.Enter += SetStatusbar_Enter;
buttonExportAsTxt.Leave += ClearStatusbar_Leave;
buttonExportAsTxt.MouseEnter += SetStatusbar_Enter;
buttonExportAsTxt.MouseLeave += ClearStatusbar_Leave;
//
// buttonExportAsXml
//
buttonExportAsXml.AccessibleDescription = "Exports the data sheet as XML file";
buttonExportAsXml.AccessibleName = "Export as XML";
buttonExportAsXml.AccessibleRole = AccessibleRole.PushButton;
buttonExportAsXml.CornerRoundingRadius = -1F;
buttonExportAsXml.Location = new Point(349, 192);
buttonExportAsXml.Margin = new Padding(4, 3, 4, 3);
buttonExportAsXml.Name = "buttonExportAsXml";
buttonExportAsXml.Size = new Size(111, 46);
buttonExportAsXml.StateCommon.Content.Image.ImageV = Krypton.Toolkit.PaletteRelativeAlign.Near;
buttonExportAsXml.TabIndex = 5;
toolTip.SetToolTip(buttonExportAsXml, "Export as XML");
buttonExportAsXml.Values.Image = Properties.Resources.silk_page_white_code;
buttonExportAsXml.Values.Text = "Export as XML";
buttonExportAsXml.Click += ButtonExportAsXml_Click;
buttonExportAsXml.Enter += SetStatusbar_Enter;
buttonExportAsXml.Leave += ClearStatusbar_Leave;
buttonExportAsXml.MouseEnter += SetStatusbar_Enter;
buttonExportAsXml.MouseLeave += ClearStatusbar_Leave;
//
// buttonExportAsHtml
//
buttonExportAsHtml.AccessibleDescription = "Exports the data sheet as HTML file";
buttonExportAsHtml.AccessibleName = "Export as HTML";
buttonExportAsHtml.AccessibleRole = AccessibleRole.PushButton;
buttonExportAsHtml.CornerRoundingRadius = -1F;
buttonExportAsHtml.Location = new Point(348, 138);
buttonExportAsHtml.Margin = new Padding(4, 3, 4, 3);
buttonExportAsHtml.Name = "buttonExportAsHtml";
buttonExportAsHtml.Size = new Size(111, 46);
buttonExportAsHtml.StateCommon.Content.Image.ImageV = Krypton.Toolkit.PaletteRelativeAlign.Near;
buttonExportAsHtml.TabIndex = 4;
toolTip.SetToolTip(buttonExportAsHtml, "Export as HTML");
buttonExportAsHtml.Values.Image = Properties.Resources.silk_page_white_code;
buttonExportAsHtml.Values.Text = "Export as HTML";
buttonExportAsHtml.Click += ButtonExportAsHtml_Click;
buttonExportAsHtml.Enter += SetStatusbar_Enter;
buttonExportAsHtml.Leave += ClearStatusbar_Leave;
buttonExportAsHtml.MouseEnter += SetStatusbar_Enter;
buttonExportAsHtml.MouseLeave += ClearStatusbar_Leave;
//
// statusStrip
//
statusStrip.AccessibleDescription = "Shows some information";
statusStrip.AccessibleName = "Status bar of some information";
statusStrip.AccessibleRole = AccessibleRole.StatusBar;
statusStrip.Dock = DockStyle.None;
statusStrip.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
statusStrip.Items.AddRange(new ToolStripItem[] { labelInformation });
statusStrip.Location = new Point(0, 0);
statusStrip.Name = "statusStrip";
statusStrip.ProgressBars = null;
statusStrip.RenderMode = ToolStripRenderMode.ManagerRenderMode;
statusStrip.Size = new Size(474, 22);
statusStrip.SizingGrip = false;
statusStrip.TabIndex = 0;
statusStrip.Text = "status bar";
//
// labelInformation
//
labelInformation.AccessibleDescription = "Shows some information";
labelInformation.AccessibleName = "Shows some information";
labelInformation.AccessibleRole = AccessibleRole.StaticText;
labelInformation.AutoToolTip = true;
labelInformation.Image = Properties.Resources.silk_lightbulb;
labelInformation.Margin = new Padding(5, 3, 0, 2);
labelInformation.Name = "labelInformation";
labelInformation.Size = new Size(144, 17);
labelInformation.Text = "some information here";
labelInformation.ToolTipText = "Shows some information";
//
// buttonUnmarkAll
//
buttonUnmarkAll.AccessibleDescription = "Umarks all orbital elements";
buttonUnmarkAll.AccessibleName = "Umark all orbital elements";
buttonUnmarkAll.AccessibleRole = AccessibleRole.PushButton;
buttonUnmarkAll.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form;
buttonUnmarkAll.CornerRoundingRadius = -1F;
buttonUnmarkAll.Location = new Point(349, 50);
buttonUnmarkAll.Margin = new Padding(4, 3, 4, 3);
buttonUnmarkAll.Name = "buttonUnmarkAll";
buttonUnmarkAll.Size = new Size(110, 29);
buttonUnmarkAll.TabIndex = 2;
toolTip.SetToolTip(buttonUnmarkAll, "Umark all orbital elements");
buttonUnmarkAll.Values.Text = "&Unmark all";
buttonUnmarkAll.Click += ButtonUnmarkAll_Click;
buttonUnmarkAll.Enter += SetStatusbar_Enter;
buttonUnmarkAll.Leave += ClearStatusbar_Leave;
buttonUnmarkAll.MouseEnter += SetStatusbar_Enter;
buttonUnmarkAll.MouseLeave += ClearStatusbar_Leave;
//
// buttonMarkAll
//
buttonMarkAll.AccessibleDescription = "Marks all orbital elements";
buttonMarkAll.AccessibleName = "Mark all orbital elements";
buttonMarkAll.AccessibleRole = AccessibleRole.PushButton;
buttonMarkAll.ButtonStyle = Krypton.Toolkit.ButtonStyle.Form;
buttonMarkAll.CornerRoundingRadius = -1F;
buttonMarkAll.Location = new Point(349, 14);
buttonMarkAll.Margin = new Padding(4, 3, 4, 3);
buttonMarkAll.Name = "buttonMarkAll";
buttonMarkAll.Size = new Size(110, 29);
buttonMarkAll.TabIndex = 1;
toolTip.SetToolTip(buttonMarkAll, "Mark all orbital elements");
buttonMarkAll.Values.Image = Properties.Resources.silk_asterisk_orange;
buttonMarkAll.Values.Text = "&Mark all";
buttonMarkAll.Click += ButtonMarkAll_Click;
buttonMarkAll.Enter += SetStatusbar_Enter;
buttonMarkAll.Leave += ClearStatusbar_Leave;
buttonMarkAll.MouseEnter += SetStatusbar_Enter;
buttonMarkAll.MouseLeave += ClearStatusbar_Leave;
//
// toolStripContainer
//
toolStripContainer.AccessibleDescription = "Container to arrange the toolbars";
toolStripContainer.AccessibleName = "Container to arrange the toolbars";
toolStripContainer.AccessibleRole = AccessibleRole.Grouping;
//
// toolStripContainer.BottomToolStripPanel
//
toolStripContainer.BottomToolStripPanel.Controls.Add(statusStrip);
//
// toolStripContainer.ContentPanel
//
toolStripContainer.ContentPanel.Controls.Add(panel);
toolStripContainer.ContentPanel.Margin = new Padding(4, 3, 4, 3);
toolStripContainer.ContentPanel.Size = new Size(474, 308);
toolStripContainer.Dock = DockStyle.Fill;
toolStripContainer.Location = new Point(0, 0);
toolStripContainer.Margin = new Padding(4, 3, 4, 3);
toolStripContainer.Name = "toolStripContainer";
toolStripContainer.Size = new Size(474, 330);
toolStripContainer.TabIndex = 3;
toolTip.SetToolTip(toolStripContainer, "Container to arrange the toolbars");
//
// panel
//
panel.AccessibleDescription = "Grpups the data";
panel.AccessibleName = "pane";
panel.AccessibleRole = AccessibleRole.Pane;
panel.Controls.Add(buttonExportAsJson);
panel.Controls.Add(buttonUnmarkAll);
panel.Controls.Add(buttonExportAsXml);
panel.Controls.Add(buttonExportAsTxt);
panel.Controls.Add(buttonExportAsHtml);
panel.Controls.Add(checkedListBoxOrbitalElements);
panel.Controls.Add(buttonMarkAll);
panel.Dock = DockStyle.Fill;
panel.Location = new Point(0, 0);
panel.Margin = new Padding(4, 3, 4, 3);
panel.Name = "panel";
panel.PanelBackStyle = Krypton.Toolkit.PaletteBackStyle.FormMain;
panel.Size = new Size(474, 308);
panel.TabIndex = 0;
panel.TabStop = true;
//
// checkedListBoxOrbitalElements
//
checkedListBoxOrbitalElements.AccessibleDescription = "Checks some orbital elements to print on a data sheet";
checkedListBoxOrbitalElements.AccessibleName = "Check orbital elements";
checkedListBoxOrbitalElements.AccessibleRole = AccessibleRole.List;
checkedListBoxOrbitalElements.BackStyle = Krypton.Toolkit.PaletteBackStyle.InputControlRibbon;
checkedListBoxOrbitalElements.CheckOnClick = true;
checkedListBoxOrbitalElements.CornerRoundingRadius = -1F;
checkedListBoxOrbitalElements.FormattingEnabled = true;
checkedListBoxOrbitalElements.HorizontalScrollbar = true;
checkedListBoxOrbitalElements.ItemCornerRoundingRadius = -1F;
checkedListBoxOrbitalElements.Items.AddRange(new object[] { "Index No.", "Readable designation", "Epoch (in packed form, .0 TT)", "Mean anomaly at the epoch (degrees)", "Argument of perihelion, J2000.0 (degrees)", "Longitude of the ascending node, J2000.0", "Inclination to the ecliptic, J2000.0 (degrees)", "Orbital eccentricity", "Mean daily motion (degrees per day)", "Semimajor axis (AU)", "Absolute magnitude, H (mag)", "Slope parameter, G", "Reference", "Number of oppositions", "Number of observations", "Observation span", "r.m.s. residual (arseconds)", "Computer name", "4-hexdigit flags", "Date of last observation (YYYMMDD)", "Linear eccentricity (AU)", "Semi-minor axis (AU)", "Major axis (AU)", "Minor axis (AU)", "Eccenctric anomaly (degrees)", "True anomaly (degrees)", "Perihelion distance (AU)", "Aphelion distance (AU)", "Longitude of Descending node (degrees)", "Argument of aphelion (degrees)", "Focal parameter (AU)", "Semi-latus rectum (AU)", "Latus rectum (AU)", "Orbital period (years)", "Orbital area (AU²)", "Orbital perimeter (AU)", "Semi-mean axis (AU)", "Mean axis (AU)", "Standard gravitational parameter (AU³/a²)" });
checkedListBoxOrbitalElements.Location = new Point(14, 14);
checkedListBoxOrbitalElements.Margin = new Padding(4, 3, 4, 3);
checkedListBoxOrbitalElements.Name = "checkedListBoxOrbitalElements";
checkedListBoxOrbitalElements.Size = new Size(327, 277);
checkedListBoxOrbitalElements.TabIndex = 0;
toolTip.SetToolTip(checkedListBoxOrbitalElements, "Check orbital elements");
checkedListBoxOrbitalElements.SelectedIndexChanged += CheckedListBoxOrbitalElements_SelectedIndexChanged;
checkedListBoxOrbitalElements.ItemCheck += CheckedListBoxOrbitalElements_ItemCheck;
checkedListBoxOrbitalElements.Enter += SetStatusbar_Enter;
checkedListBoxOrbitalElements.Leave += ClearStatusbar_Leave;
checkedListBoxOrbitalElements.MouseEnter += SetStatusbar_Enter;
checkedListBoxOrbitalElements.MouseLeave += ClearStatusbar_Leave;
//
// saveFileDialogTxt
//
saveFileDialogTxt.DefaultExt = "txt";
saveFileDialogTxt.Filter = "text files|*.txt|all files|*.*";
//
// saveFileDialogHtml
//
saveFileDialogHtml.DefaultExt = "html";
saveFileDialogHtml.Filter = "HTML files|*.html|all files|*.*";
//
// saveFileDialogXml
//
saveFileDialogXml.DefaultExt = "xml";
saveFileDialogXml.Filter = "XML files|*.xml|all files|*.*";
//
// saveFileDialogJson
//
saveFileDialogJson.DefaultExt = "json";
saveFileDialogJson.Filter = "JSON files|*.json|all files|*.*";
//
// ExportDataSheetForm
//
AccessibleDescription = "Exports data sheet";
AccessibleName = "Export data sheet";
AccessibleRole = AccessibleRole.Dialog;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(474, 330);
Controls.Add(toolStripContainer);
FormBorderStyle = FormBorderStyle.FixedToolWindow;
Icon = (Icon)resources.GetObject("$this.Icon");
Margin = new Padding(4, 3, 4, 3);
MaximizeBox = false;
MinimizeBox = false;
Name = "ExportDataSheetForm";
ShowInTaskbar = false;
StartPosition = FormStartPosition.CenterScreen;
Text = "Export data sheet";
toolTip.SetToolTip(this, "Export data sheet");
Load += ExportDataSheetForm_Load;
statusStrip.ResumeLayout(false);
statusStrip.PerformLayout();
toolStripContainer.BottomToolStripPanel.ResumeLayout(false);
toolStripContainer.BottomToolStripPanel.PerformLayout();
toolStripContainer.ContentPanel.ResumeLayout(false);
toolStripContainer.ResumeLayout(false);
toolStripContainer.PerformLayout();
((System.ComponentModel.ISupportInitialize)panel).EndInit();
panel.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private Krypton.Toolkit.KryptonButton buttonExportAsHtml;
private Krypton.Toolkit.KryptonButton buttonExportAsTxt;
private Krypton.Toolkit.KryptonButton buttonExportAsXml;
private Krypton.Toolkit.KryptonButton buttonExportAsJson;
private Krypton.Toolkit.KryptonStatusStrip statusStrip;
private ToolStripStatusLabel labelInformation;
private ToolTip toolTip;
private SaveFileDialog saveFileDialogTxt;
private SaveFileDialog saveFileDialogHtml;
private SaveFileDialog saveFileDialogXml;
private SaveFileDialog saveFileDialogJson;
private ToolStripContainer toolStripContainer;
private Krypton.Toolkit.KryptonPanel panel;
private Krypton.Toolkit.KryptonCheckedListBox checkedListBoxOrbitalElements;
private Krypton.Toolkit.KryptonButton buttonUnmarkAll;
private Krypton.Toolkit.KryptonButton buttonMarkAll;
}
}