-
Notifications
You must be signed in to change notification settings - Fork 11
/
MarkerEditor.Designer.cs
223 lines (217 loc) · 11.2 KB
/
MarkerEditor.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
namespace hexer
{
partial class MarkerEditor
{
/// <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()
{
this.markerAtLabel = new System.Windows.Forms.Label();
this.markerAtTextBox = new System.Windows.Forms.TextBox();
this.noteTextBox = new System.Windows.Forms.TextBox();
this.noteLabel = new System.Windows.Forms.Label();
this.dataTypeLabel = new System.Windows.Forms.Label();
this.dataTypeComboBox = new System.Windows.Forms.ComboBox();
this.sizelabel = new System.Windows.Forms.Label();
this.sizeNumericUpDown = new System.Windows.Forms.NumericUpDown();
this.valueLabel = new System.Windows.Forms.Label();
this.valueTextBox = new System.Windows.Forms.TextBox();
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.applyButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.sizeNumericUpDown)).BeginInit();
this.SuspendLayout();
//
// markerAtLabel
//
this.markerAtLabel.Location = new System.Drawing.Point(0, 9);
this.markerAtLabel.Name = "markerAtLabel";
this.markerAtLabel.Size = new System.Drawing.Size(101, 23);
this.markerAtLabel.TabIndex = 0;
this.markerAtLabel.Text = "Editing marker at:";
this.markerAtLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// markerAtTextBox
//
this.markerAtTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.markerAtTextBox.Location = new System.Drawing.Point(107, 6);
this.markerAtTextBox.Name = "markerAtTextBox";
this.markerAtTextBox.ReadOnly = true;
this.markerAtTextBox.Size = new System.Drawing.Size(152, 20);
this.markerAtTextBox.TabIndex = 1;
this.markerAtTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// noteTextBox
//
this.noteTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.noteTextBox.Location = new System.Drawing.Point(107, 32);
this.noteTextBox.Name = "noteTextBox";
this.noteTextBox.Size = new System.Drawing.Size(152, 20);
this.noteTextBox.TabIndex = 1;
this.noteTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// noteLabel
//
this.noteLabel.Location = new System.Drawing.Point(0, 35);
this.noteLabel.Name = "noteLabel";
this.noteLabel.Size = new System.Drawing.Size(101, 23);
this.noteLabel.TabIndex = 4;
this.noteLabel.Text = "Note:";
this.noteLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// dataTypeLabel
//
this.dataTypeLabel.Location = new System.Drawing.Point(0, 61);
this.dataTypeLabel.Name = "dataTypeLabel";
this.dataTypeLabel.Size = new System.Drawing.Size(101, 23);
this.dataTypeLabel.TabIndex = 6;
this.dataTypeLabel.Text = "Data Type:";
this.dataTypeLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// dataTypeComboBox
//
this.dataTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dataTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.dataTypeComboBox.FormattingEnabled = true;
this.dataTypeComboBox.Location = new System.Drawing.Point(107, 58);
this.dataTypeComboBox.Name = "dataTypeComboBox";
this.dataTypeComboBox.Size = new System.Drawing.Size(152, 21);
this.dataTypeComboBox.TabIndex = 2;
this.dataTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.dataTypeComboBox_SelectedIndexChanged);
//
// sizelabel
//
this.sizelabel.Location = new System.Drawing.Point(0, 87);
this.sizelabel.Name = "sizelabel";
this.sizelabel.Size = new System.Drawing.Size(101, 23);
this.sizelabel.TabIndex = 8;
this.sizelabel.Text = "Size (Bytes):";
this.sizelabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// sizeNumericUpDown
//
this.sizeNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.sizeNumericUpDown.Location = new System.Drawing.Point(107, 85);
this.sizeNumericUpDown.Name = "sizeNumericUpDown";
this.sizeNumericUpDown.Size = new System.Drawing.Size(152, 20);
this.sizeNumericUpDown.TabIndex = 3;
//
// valueLabel
//
this.valueLabel.Location = new System.Drawing.Point(0, 114);
this.valueLabel.Name = "valueLabel";
this.valueLabel.Size = new System.Drawing.Size(101, 23);
this.valueLabel.TabIndex = 11;
this.valueLabel.Text = "Value:";
this.valueLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// valueTextBox
//
this.valueTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.valueTextBox.Location = new System.Drawing.Point(107, 111);
this.valueTextBox.Name = "valueTextBox";
this.valueTextBox.Size = new System.Drawing.Size(152, 20);
this.valueTextBox.TabIndex = 0;
this.valueTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.Location = new System.Drawing.Point(184, 149);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 4;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// cancelButton
//
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(12, 149);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex = 5;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// applyButton
//
this.applyButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.applyButton.Location = new System.Drawing.Point(98, 149);
this.applyButton.Name = "applyButton";
this.applyButton.Size = new System.Drawing.Size(75, 23);
this.applyButton.TabIndex = 12;
this.applyButton.Text = "Apply";
this.applyButton.UseVisualStyleBackColor = true;
this.applyButton.Click += new System.EventHandler(this.applyButton_Click);
//
// MarkerEditor
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(271, 184);
this.Controls.Add(this.applyButton);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.Controls.Add(this.valueLabel);
this.Controls.Add(this.valueTextBox);
this.Controls.Add(this.sizeNumericUpDown);
this.Controls.Add(this.sizelabel);
this.Controls.Add(this.dataTypeComboBox);
this.Controls.Add(this.dataTypeLabel);
this.Controls.Add(this.noteLabel);
this.Controls.Add(this.noteTextBox);
this.Controls.Add(this.markerAtTextBox);
this.Controls.Add(this.markerAtLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "MarkerEditor";
this.Text = "Marker editor";
((System.ComponentModel.ISupportInitialize)(this.sizeNumericUpDown)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label markerAtLabel;
private System.Windows.Forms.TextBox markerAtTextBox;
private System.Windows.Forms.TextBox noteTextBox;
private System.Windows.Forms.Label noteLabel;
private System.Windows.Forms.Label dataTypeLabel;
private System.Windows.Forms.ComboBox dataTypeComboBox;
private System.Windows.Forms.Label sizelabel;
private System.Windows.Forms.NumericUpDown sizeNumericUpDown;
private System.Windows.Forms.Label valueLabel;
private System.Windows.Forms.TextBox valueTextBox;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.Button applyButton;
}
}