HamBook – Blame information for rev 51

Subversion Repositories:
Rev:
Rev Author Line No. Line
15 office 1 namespace HamBook
2 {
3 partial class MemoryOrganizerForm
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9  
10 #region Windows Form Designer generated code
11  
12 /// <summary>
13 /// Required method for Designer support - do not modify
14 /// the contents of this method with the code editor.
15 /// </summary>
16 private void InitializeComponent()
17 {
41 office 18 this.components = new System.ComponentModel.Container();
19 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MemoryOrganizerForm));
15 office 20 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
41 office 21 this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
51 office 22 this.fromVFOAToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
23 this.fromVFOBToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
24 this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
25 this.goToToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
26 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
41 office 27 this.readToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
28 this.writeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
16 office 29 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
30 this.button1 = new System.Windows.Forms.Button();
31 this.button2 = new System.Windows.Forms.Button();
32 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
33 this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
34 this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
35 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
36 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
37 this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
38 this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
39 this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
40 this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
51 office 41 this.memoryChannelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
42 this.frequencyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
43 this.dataGridView1 = new HamBook.Utilities.Controls.DoubleBufferedDataGridView();
15 office 44 this.tableLayoutPanel1.SuspendLayout();
41 office 45 this.contextMenuStrip1.SuspendLayout();
15 office 46 this.tableLayoutPanel2.SuspendLayout();
47 this.statusStrip1.SuspendLayout();
16 office 48 this.menuStrip1.SuspendLayout();
51 office 49 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
15 office 50 this.SuspendLayout();
51 //
52 // tableLayoutPanel1
53 //
54 this.tableLayoutPanel1.ColumnCount = 1;
55 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
56 this.tableLayoutPanel1.Controls.Add(this.dataGridView1, 0, 0);
57 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
58 this.tableLayoutPanel1.Controls.Add(this.statusStrip1, 0, 2);
59 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
16 office 60 this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
15 office 61 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
62 this.tableLayoutPanel1.RowCount = 3;
63 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
64 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
65 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
16 office 66 this.tableLayoutPanel1.Size = new System.Drawing.Size(1101, 431);
15 office 67 this.tableLayoutPanel1.TabIndex = 1;
68 //
41 office 69 // contextMenuStrip1
70 //
71 this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
51 office 72 this.fromVFOAToolStripMenuItem,
73 this.fromVFOBToolStripMenuItem,
74 this.toolStripSeparator2,
75 this.goToToolStripMenuItem,
76 this.toolStripSeparator1,
41 office 77 this.readToolStripMenuItem,
78 this.writeToolStripMenuItem});
79 this.contextMenuStrip1.Name = "contextMenuStrip1";
51 office 80 this.contextMenuStrip1.Size = new System.Drawing.Size(168, 126);
41 office 81 //
51 office 82 // fromVFOAToolStripMenuItem
83 //
84 this.fromVFOAToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("fromVFOAToolStripMenuItem.Image")));
85 this.fromVFOAToolStripMenuItem.Name = "fromVFOAToolStripMenuItem";
86 this.fromVFOAToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
87 this.fromVFOAToolStripMenuItem.Text = "Read from VFO-A";
88 this.fromVFOAToolStripMenuItem.Click += new System.EventHandler(this.readFromVFOAToolStripMenuItem_Click);
89 //
90 // fromVFOBToolStripMenuItem
91 //
92 this.fromVFOBToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("fromVFOBToolStripMenuItem.Image")));
93 this.fromVFOBToolStripMenuItem.Name = "fromVFOBToolStripMenuItem";
94 this.fromVFOBToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
95 this.fromVFOBToolStripMenuItem.Text = "Read from VFO-B";
96 this.fromVFOBToolStripMenuItem.Click += new System.EventHandler(this.readFromVFOBToolStripMenuItem_Click);
97 //
98 // toolStripSeparator2
99 //
100 this.toolStripSeparator2.Name = "toolStripSeparator2";
101 this.toolStripSeparator2.Size = new System.Drawing.Size(164, 6);
102 //
103 // goToToolStripMenuItem
104 //
105 this.goToToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
106 this.memoryChannelToolStripMenuItem,
107 this.frequencyToolStripMenuItem});
108 this.goToToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("goToToolStripMenuItem.Image")));
109 this.goToToolStripMenuItem.Name = "goToToolStripMenuItem";
110 this.goToToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
111 this.goToToolStripMenuItem.Text = "Go to";
112 //
113 // toolStripSeparator1
114 //
115 this.toolStripSeparator1.Name = "toolStripSeparator1";
116 this.toolStripSeparator1.Size = new System.Drawing.Size(164, 6);
117 //
41 office 118 // readToolStripMenuItem
119 //
120 this.readToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("readToolStripMenuItem.Image")));
121 this.readToolStripMenuItem.Name = "readToolStripMenuItem";
51 office 122 this.readToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
41 office 123 this.readToolStripMenuItem.Text = "Read";
124 this.readToolStripMenuItem.Click += new System.EventHandler(this.readToolStripMenuItem_Click);
125 //
126 // writeToolStripMenuItem
127 //
128 this.writeToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("writeToolStripMenuItem.Image")));
129 this.writeToolStripMenuItem.Name = "writeToolStripMenuItem";
51 office 130 this.writeToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
41 office 131 this.writeToolStripMenuItem.Text = "Write";
132 this.writeToolStripMenuItem.Click += new System.EventHandler(this.writeToolStripMenuItem_Click);
133 //
134 // tableLayoutPanel2
135 //
136 this.tableLayoutPanel2.ColumnCount = 3;
137 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
138 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80F));
139 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80F));
140 this.tableLayoutPanel2.Controls.Add(this.button1, 1, 0);
141 this.tableLayoutPanel2.Controls.Add(this.button2, 2, 0);
142 this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
143 this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 374);
144 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
145 this.tableLayoutPanel2.RowCount = 1;
146 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
147 this.tableLayoutPanel2.Size = new System.Drawing.Size(1095, 34);
148 this.tableLayoutPanel2.TabIndex = 1;
149 //
150 // button1
151 //
152 this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
153 this.button1.Location = new System.Drawing.Point(938, 5);
154 this.button1.Name = "button1";
155 this.button1.Size = new System.Drawing.Size(74, 23);
156 this.button1.TabIndex = 0;
157 this.button1.Text = "Read";
158 this.button1.UseVisualStyleBackColor = true;
159 this.button1.Click += new System.EventHandler(this.button1_Click);
160 //
161 // button2
162 //
163 this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
164 this.button2.Location = new System.Drawing.Point(1018, 5);
165 this.button2.Name = "button2";
166 this.button2.Size = new System.Drawing.Size(74, 23);
167 this.button2.TabIndex = 1;
168 this.button2.Text = "Write";
169 this.button2.UseVisualStyleBackColor = true;
170 this.button2.Click += new System.EventHandler(this.button2_Click);
171 //
172 // statusStrip1
173 //
174 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
175 this.toolStripProgressBar1,
176 this.toolStripStatusLabel1});
177 this.statusStrip1.Location = new System.Drawing.Point(0, 411);
178 this.statusStrip1.Name = "statusStrip1";
179 this.statusStrip1.Size = new System.Drawing.Size(1101, 20);
180 this.statusStrip1.TabIndex = 2;
181 this.statusStrip1.Text = "statusStrip1";
182 //
183 // toolStripProgressBar1
184 //
185 this.toolStripProgressBar1.Name = "toolStripProgressBar1";
186 this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 14);
187 //
188 // toolStripStatusLabel1
189 //
190 this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
191 this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 15);
192 this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
193 //
194 // menuStrip1
195 //
196 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
197 this.fileToolStripMenuItem});
198 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
199 this.menuStrip1.Name = "menuStrip1";
200 this.menuStrip1.Size = new System.Drawing.Size(1101, 24);
201 this.menuStrip1.TabIndex = 2;
202 this.menuStrip1.Text = "menuStrip1";
203 //
204 // fileToolStripMenuItem
205 //
206 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
207 this.importToolStripMenuItem,
208 this.exportToolStripMenuItem});
209 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
210 this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
211 this.fileToolStripMenuItem.Text = "File";
212 //
213 // importToolStripMenuItem
214 //
215 this.importToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("importToolStripMenuItem.Image")));
216 this.importToolStripMenuItem.Name = "importToolStripMenuItem";
217 this.importToolStripMenuItem.Size = new System.Drawing.Size(110, 22);
218 this.importToolStripMenuItem.Text = "Import";
219 this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
220 //
221 // exportToolStripMenuItem
222 //
223 this.exportToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("exportToolStripMenuItem.Image")));
224 this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
225 this.exportToolStripMenuItem.Size = new System.Drawing.Size(110, 22);
226 this.exportToolStripMenuItem.Text = "Export";
227 this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
228 //
229 // saveFileDialog1
230 //
51 office 231 this.saveFileDialog1.Filter = "XML Files|*.xml";
41 office 232 this.saveFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog1_FileOk);
233 //
234 // openFileDialog1
235 //
236 this.openFileDialog1.FileName = "openFileDialog1";
51 office 237 this.openFileDialog1.Filter = "XML Files|*.xml";
41 office 238 this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
239 //
51 office 240 // memoryChannelToolStripMenuItem
241 //
242 this.memoryChannelToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("memoryChannelToolStripMenuItem.Image")));
243 this.memoryChannelToolStripMenuItem.Name = "memoryChannelToolStripMenuItem";
244 this.memoryChannelToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
245 this.memoryChannelToolStripMenuItem.Text = "Memory Channel";
246 this.memoryChannelToolStripMenuItem.Click += new System.EventHandler(this.memoryChannelToolStripMenuItem_Click);
247 //
248 // frequencyToolStripMenuItem
249 //
250 this.frequencyToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("frequencyToolStripMenuItem.Image")));
251 this.frequencyToolStripMenuItem.Name = "frequencyToolStripMenuItem";
252 this.frequencyToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
253 this.frequencyToolStripMenuItem.Text = "Frequency";
254 this.frequencyToolStripMenuItem.Click += new System.EventHandler(this.frequencyToolStripMenuItem_Click);
255 //
256 // dataGridView1
257 //
258 this.dataGridView1.AllowUserToAddRows = false;
259 this.dataGridView1.AllowUserToDeleteRows = false;
260 this.dataGridView1.AllowUserToResizeRows = false;
261 this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
262 this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
263 this.dataGridView1.ContextMenuStrip = this.contextMenuStrip1;
264 this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
265 this.dataGridView1.DoubleBuffered = true;
266 this.dataGridView1.Location = new System.Drawing.Point(3, 3);
267 this.dataGridView1.Name = "dataGridView1";
268 this.dataGridView1.RowHeadersVisible = false;
269 this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
270 this.dataGridView1.Size = new System.Drawing.Size(1095, 365);
271 this.dataGridView1.TabIndex = 0;
272 this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1_CellContentClick);
273 this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellDoubleClick);
274 this.dataGridView1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1_CellEndEdit);
275 this.dataGridView1.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.DataGridView1_CellMouseUp);
276 this.dataGridView1.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1_CellValueChanged);
277 this.dataGridView1.CurrentCellDirtyStateChanged += new System.EventHandler(this.DataGridView1_CurrentCellDirtyStateChanged);
278 this.dataGridView1.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.DataGridView1_DataError);
279 this.dataGridView1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dataGridView1_MouseDown);
280 //
15 office 281 // MemoryOrganizerForm
282 //
283 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
284 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
285 this.ClientSize = new System.Drawing.Size(1101, 455);
286 this.Controls.Add(this.tableLayoutPanel1);
16 office 287 this.Controls.Add(this.menuStrip1);
15 office 288 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
16 office 289 this.MainMenuStrip = this.menuStrip1;
15 office 290 this.Name = "MemoryOrganizerForm";
291 this.Text = "HamBook: Memory Organizer";
22 office 292 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MemoryOrganizerForm_FormClosing);
15 office 293 this.Load += new System.EventHandler(this.MemoryOrganizerForm_Load);
294 this.tableLayoutPanel1.ResumeLayout(false);
295 this.tableLayoutPanel1.PerformLayout();
41 office 296 this.contextMenuStrip1.ResumeLayout(false);
15 office 297 this.tableLayoutPanel2.ResumeLayout(false);
298 this.statusStrip1.ResumeLayout(false);
299 this.statusStrip1.PerformLayout();
16 office 300 this.menuStrip1.ResumeLayout(false);
301 this.menuStrip1.PerformLayout();
51 office 302 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
15 office 303 this.ResumeLayout(false);
16 office 304 this.PerformLayout();
15 office 305  
306 }
307  
308 #endregion
309  
310 private HamBook.Utilities.Controls.DoubleBufferedDataGridView dataGridView1;
311 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
312 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
313 private System.Windows.Forms.Button button1;
314 private System.Windows.Forms.Button button2;
315 private System.Windows.Forms.StatusStrip statusStrip1;
316 private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
317 private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
40 office 318 private System.Windows.Forms.MenuStrip menuStrip1;
319 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
320 private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem;
321 private System.Windows.Forms.ToolStripMenuItem exportToolStripMenuItem;
322 private System.Windows.Forms.SaveFileDialog saveFileDialog1;
323 private System.Windows.Forms.OpenFileDialog openFileDialog1;
41 office 324 private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
325 private System.Windows.Forms.ToolStripMenuItem readToolStripMenuItem;
326 private System.Windows.Forms.ToolStripMenuItem writeToolStripMenuItem;
51 office 327 private System.Windows.Forms.ToolStripMenuItem goToToolStripMenuItem;
328 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
329 private System.Windows.Forms.ToolStripMenuItem fromVFOAToolStripMenuItem;
330 private System.Windows.Forms.ToolStripMenuItem fromVFOBToolStripMenuItem;
331 private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
332 private System.Windows.Forms.ToolStripMenuItem memoryChannelToolStripMenuItem;
333 private System.Windows.Forms.ToolStripMenuItem frequencyToolStripMenuItem;
15 office 334 }
335 }