-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStartGUI.Designer.cs
More file actions
177 lines (172 loc) · 8.62 KB
/
StartGUI.Designer.cs
File metadata and controls
177 lines (172 loc) · 8.62 KB
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
namespace Aml.Editor.Plugin
{
partial class StartGUI
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Komponenten-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.createDeviceBtn = new System.Windows.Forms.Button();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.createInterfaceBtn = new System.Windows.Forms.Button();
this.importIODDFileBtn = new System.Windows.Forms.Button();
this.devicesComboBox = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.importGSDFileBtn = new System.Windows.Forms.Button();
this.editFileBtn = new System.Windows.Forms.Button();
this.openEditDialog = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold);
this.label1.Location = new System.Drawing.Point(172, 0);
this.label1.Name = "label1";
this.label1.Padding = new System.Windows.Forms.Padding(0, 50, 0, 0);
this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.label1.Size = new System.Drawing.Size(240, 70);
this.label1.TabIndex = 1;
this.label1.Text = "Modelling Wizard for Devices";
//
// createDeviceBtn
//
this.createDeviceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.createDeviceBtn.Location = new System.Drawing.Point(200, 137);
this.createDeviceBtn.Name = "createDeviceBtn";
this.createDeviceBtn.Size = new System.Drawing.Size(151, 23);
this.createDeviceBtn.TabIndex = 1;
this.createDeviceBtn.Text = "Create a new Device";
this.createDeviceBtn.UseVisualStyleBackColor = true;
this.createDeviceBtn.Click += new System.EventHandler(this.createDeviceBtn_Click);
//
// openFileDialog
//
this.openFileDialog.Multiselect = true;
this.openFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog_FileOk);
//
// createInterfaceBtn
//
this.createInterfaceBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.createInterfaceBtn.Location = new System.Drawing.Point(200, 178);
this.createInterfaceBtn.Name = "createInterfaceBtn";
this.createInterfaceBtn.Size = new System.Drawing.Size(151, 23);
this.createInterfaceBtn.TabIndex = 2;
this.createInterfaceBtn.Text = "Create a new Interface";
this.createInterfaceBtn.UseVisualStyleBackColor = true;
this.createInterfaceBtn.Click += new System.EventHandler(this.createInterfaceBtn_Click);
//
// importIODDFileBtn
//
this.importIODDFileBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.importIODDFileBtn.Location = new System.Drawing.Point(200, 266);
this.importIODDFileBtn.Name = "importIODDFileBtn";
this.importIODDFileBtn.Size = new System.Drawing.Size(151, 23);
this.importIODDFileBtn.TabIndex = 3;
this.importIODDFileBtn.Text = "Import IODD-File";
this.importIODDFileBtn.UseVisualStyleBackColor = true;
this.importIODDFileBtn.Click += new System.EventHandler(this.importIODDFileBtn_Click);
//
// devicesComboBox
//
this.devicesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.devicesComboBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.devicesComboBox.FormattingEnabled = true;
this.devicesComboBox.Items.AddRange(new object[] {
"<No created Device>"});
this.devicesComboBox.Location = new System.Drawing.Point(200, 398);
this.devicesComboBox.Name = "devicesComboBox";
this.devicesComboBox.Size = new System.Drawing.Size(151, 21);
this.devicesComboBox.TabIndex = 5;
this.devicesComboBox.SelectionChangeCommitted += new System.EventHandler(this.devicesComboBox_SelectionChangeCommitted);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(197, 379);
this.label2.Margin = new System.Windows.Forms.Padding(3, 0, 3, 3);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(153, 13);
this.label2.TabIndex = 6;
this.label2.Text = "Modify an existing AML Object:";
//
// importGSDFileBtn
//
this.importGSDFileBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.importGSDFileBtn.Location = new System.Drawing.Point(200, 295);
this.importGSDFileBtn.Name = "importGSDFileBtn";
this.importGSDFileBtn.Size = new System.Drawing.Size(151, 23);
this.importGSDFileBtn.TabIndex = 4;
this.importGSDFileBtn.Text = "Import GSD-File";
this.importGSDFileBtn.UseVisualStyleBackColor = true;
this.importGSDFileBtn.Click += new System.EventHandler(this.importGSDFileBtn_Click);
//
// editFileBtn
//
this.editFileBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.editFileBtn.Location = new System.Drawing.Point(199, 442);
this.editFileBtn.Name = "editFileBtn";
this.editFileBtn.Size = new System.Drawing.Size(151, 23);
this.editFileBtn.TabIndex = 7;
this.editFileBtn.Text = "Choose file to edit";
this.editFileBtn.UseVisualStyleBackColor = true;
this.editFileBtn.Click += new System.EventHandler(this.editFileBtn_Click);
//
// openEditDialog
//
this.openEditDialog.DefaultExt = "amlx";
this.openEditDialog.Filter = "AMLX File (*.amlx)|*.amlx";
this.openEditDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openEditDialog_FileOk);
//
// StartGUI
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.Controls.Add(this.editFileBtn);
this.Controls.Add(this.importGSDFileBtn);
this.Controls.Add(this.label2);
this.Controls.Add(this.devicesComboBox);
this.Controls.Add(this.importIODDFileBtn);
this.Controls.Add(this.createInterfaceBtn);
this.Controls.Add(this.createDeviceBtn);
this.Controls.Add(this.label1);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "StartGUI";
this.Size = new System.Drawing.Size(556, 554);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button createDeviceBtn;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.Button createInterfaceBtn;
private System.Windows.Forms.Button importIODDFileBtn;
private System.Windows.Forms.ComboBox devicesComboBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button importGSDFileBtn;
private System.Windows.Forms.Button editFileBtn;
private System.Windows.Forms.OpenFileDialog openEditDialog;
}
}