HamBook – Blame information for rev 16

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 {
18 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MemoryOrganizerForm));
19 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
20 this.dataGridView1 = new HamBook.Utilities.Controls.DoubleBufferedDataGridView();
21 this.LocationColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
22 this.FrequencyColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
23 this.ClarifierDirectionColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
24 this.ClarifierOffsetColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
25 this.ClarColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
26 this.ModeColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
27 this.CtcssColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
28 this.PhaseColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
29 this.TagColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
30 this.TextColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
16 office 31 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
32 this.button1 = new System.Windows.Forms.Button();
33 this.button2 = new System.Windows.Forms.Button();
34 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
35 this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
36 this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
37 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
38 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
39 this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
40 this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
41 this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
42 this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
15 office 43 this.tableLayoutPanel1.SuspendLayout();
16 office 44 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
15 office 45 this.tableLayoutPanel2.SuspendLayout();
46 this.statusStrip1.SuspendLayout();
16 office 47 this.menuStrip1.SuspendLayout();
15 office 48 this.SuspendLayout();
49 //
50 // tableLayoutPanel1
51 //
52 this.tableLayoutPanel1.ColumnCount = 1;
53 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
54 this.tableLayoutPanel1.Controls.Add(this.dataGridView1, 0, 0);
55 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
56 this.tableLayoutPanel1.Controls.Add(this.statusStrip1, 0, 2);
57 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
16 office 58 this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
15 office 59 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
60 this.tableLayoutPanel1.RowCount = 3;
61 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
62 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
63 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
16 office 64 this.tableLayoutPanel1.Size = new System.Drawing.Size(1101, 431);
15 office 65 this.tableLayoutPanel1.TabIndex = 1;
66 //
67 // dataGridView1
68 //
69 this.dataGridView1.AllowUserToAddRows = false;
70 this.dataGridView1.AllowUserToDeleteRows = false;
71 this.dataGridView1.AllowUserToResizeRows = false;
72 this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
73 this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
74 this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
75 this.LocationColumn,
76 this.FrequencyColumn,
77 this.ClarifierDirectionColumn,
78 this.ClarifierOffsetColumn,
79 this.ClarColumn,
80 this.ModeColumn,
81 this.CtcssColumn,
82 this.PhaseColumn,
83 this.TagColumn,
84 this.TextColumn});
85 this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
86 this.dataGridView1.DoubleBuffered = true;
87 this.dataGridView1.Location = new System.Drawing.Point(3, 3);
88 this.dataGridView1.Name = "dataGridView1";
89 this.dataGridView1.RowHeadersVisible = false;
90 this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
16 office 91 this.dataGridView1.Size = new System.Drawing.Size(1095, 365);
15 office 92 this.dataGridView1.TabIndex = 0;
93 this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1_CellContentClick);
94 this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView_CellDoubleClick);
95 this.dataGridView1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1_CellEndEdit);
96 this.dataGridView1.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.DataGridView1_CellMouseUp);
97 this.dataGridView1.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.DataGridView1_CellValueChanged);
98 this.dataGridView1.CurrentCellDirtyStateChanged += new System.EventHandler(this.DataGridView1_CurrentCellDirtyStateChanged);
99 this.dataGridView1.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.DataGridView1_DataError);
100 //
101 // LocationColumn
102 //
103 this.LocationColumn.HeaderText = "Location";
104 this.LocationColumn.Name = "LocationColumn";
105 this.LocationColumn.ReadOnly = true;
106 //
107 // FrequencyColumn
108 //
109 this.FrequencyColumn.HeaderText = "Frequency";
110 this.FrequencyColumn.Name = "FrequencyColumn";
111 //
112 // ClarifierDirectionColumn
113 //
114 this.ClarifierDirectionColumn.HeaderText = "Clarifier";
115 this.ClarifierDirectionColumn.Items.AddRange(new object[] {
116 "+",
117 "-"});
118 this.ClarifierDirectionColumn.Name = "ClarifierDirectionColumn";
119 //
120 // ClarifierOffsetColumn
121 //
122 this.ClarifierOffsetColumn.HeaderText = "Offset";
123 this.ClarifierOffsetColumn.Name = "ClarifierOffsetColumn";
124 //
125 // ClarColumn
126 //
127 this.ClarColumn.HeaderText = "Clar";
128 this.ClarColumn.Name = "ClarColumn";
129 this.ClarColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
130 //
131 // ModeColumn
132 //
133 this.ModeColumn.HeaderText = "Mode";
134 this.ModeColumn.Items.AddRange(new object[] {
135 "LSB",
136 "USB",
137 "CW",
138 "FM",
139 "AM",
140 "RTTY-LSB",
141 "CW-R",
142 "DATA-LSB",
143 "RTTY-USB",
144 "FM-N",
145 "DATA-USB",
146 "AM-N"});
147 this.ModeColumn.Name = "ModeColumn";
148 //
149 // CtcssColumn
150 //
151 this.CtcssColumn.HeaderText = "CTCSS";
152 this.CtcssColumn.Items.AddRange(new object[] {
153 "Off",
154 "Enc/Dec",
155 "Enc"});
156 this.CtcssColumn.Name = "CtcssColumn";
157 //
158 // PhaseColumn
159 //
160 this.PhaseColumn.HeaderText = "Phase";
161 this.PhaseColumn.Items.AddRange(new object[] {
162 "Simplex",
163 "Plus Shift",
164 "Minus Shift"});
165 this.PhaseColumn.Name = "PhaseColumn";
166 //
167 // TagColumn
168 //
169 this.TagColumn.HeaderText = "Tag";
170 this.TagColumn.Name = "TagColumn";
171 this.TagColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
172 //
173 // TextColumn
174 //
175 this.TextColumn.HeaderText = "Text";
176 this.TextColumn.Name = "TextColumn";
177 //
16 office 178 // tableLayoutPanel2
179 //
180 this.tableLayoutPanel2.ColumnCount = 3;
181 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
182 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80F));
183 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80F));
184 this.tableLayoutPanel2.Controls.Add(this.button1, 1, 0);
185 this.tableLayoutPanel2.Controls.Add(this.button2, 2, 0);
186 this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
187 this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 374);
188 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
189 this.tableLayoutPanel2.RowCount = 1;
190 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
191 this.tableLayoutPanel2.Size = new System.Drawing.Size(1095, 34);
192 this.tableLayoutPanel2.TabIndex = 1;
193 //
194 // button1
195 //
196 this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
197 this.button1.Location = new System.Drawing.Point(938, 5);
198 this.button1.Name = "button1";
199 this.button1.Size = new System.Drawing.Size(74, 23);
200 this.button1.TabIndex = 0;
201 this.button1.Text = "Read";
202 this.button1.UseVisualStyleBackColor = true;
203 this.button1.Click += new System.EventHandler(this.button1_Click);
204 //
205 // button2
206 //
207 this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
208 this.button2.Location = new System.Drawing.Point(1018, 5);
209 this.button2.Name = "button2";
210 this.button2.Size = new System.Drawing.Size(74, 23);
211 this.button2.TabIndex = 1;
212 this.button2.Text = "Write";
213 this.button2.UseVisualStyleBackColor = true;
214 this.button2.Click += new System.EventHandler(this.button2_Click);
215 //
216 // statusStrip1
217 //
218 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
219 this.toolStripProgressBar1,
220 this.toolStripStatusLabel1});
221 this.statusStrip1.Location = new System.Drawing.Point(0, 411);
222 this.statusStrip1.Name = "statusStrip1";
223 this.statusStrip1.Size = new System.Drawing.Size(1101, 20);
224 this.statusStrip1.TabIndex = 2;
225 this.statusStrip1.Text = "statusStrip1";
226 //
227 // toolStripProgressBar1
228 //
229 this.toolStripProgressBar1.Name = "toolStripProgressBar1";
230 this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 14);
231 //
232 // toolStripStatusLabel1
233 //
234 this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
235 this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 15);
236 this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
237 //
238 // menuStrip1
239 //
240 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
241 this.fileToolStripMenuItem});
242 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
243 this.menuStrip1.Name = "menuStrip1";
244 this.menuStrip1.Size = new System.Drawing.Size(1101, 24);
245 this.menuStrip1.TabIndex = 2;
246 this.menuStrip1.Text = "menuStrip1";
247 //
248 // fileToolStripMenuItem
249 //
250 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
251 this.importToolStripMenuItem,
252 this.exportToolStripMenuItem});
253 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
254 this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
255 this.fileToolStripMenuItem.Text = "File";
256 //
257 // importToolStripMenuItem
258 //
259 this.importToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("importToolStripMenuItem.Image")));
260 this.importToolStripMenuItem.Name = "importToolStripMenuItem";
261 this.importToolStripMenuItem.Size = new System.Drawing.Size(110, 22);
262 this.importToolStripMenuItem.Text = "Import";
263 this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
264 //
265 // exportToolStripMenuItem
266 //
267 this.exportToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("exportToolStripMenuItem.Image")));
268 this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
269 this.exportToolStripMenuItem.Size = new System.Drawing.Size(110, 22);
270 this.exportToolStripMenuItem.Text = "Export";
271 this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
272 //
273 // saveFileDialog1
274 //
275 this.saveFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog1_FileOk);
276 //
277 // openFileDialog1
278 //
279 this.openFileDialog1.FileName = "openFileDialog1";
280 this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
281 //
15 office 282 // MemoryOrganizerForm
283 //
284 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
285 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
286 this.ClientSize = new System.Drawing.Size(1101, 455);
287 this.Controls.Add(this.tableLayoutPanel1);
16 office 288 this.Controls.Add(this.menuStrip1);
15 office 289 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
16 office 290 this.MainMenuStrip = this.menuStrip1;
15 office 291 this.Name = "MemoryOrganizerForm";
292 this.Text = "HamBook: Memory Organizer";
293 this.Load += new System.EventHandler(this.MemoryOrganizerForm_Load);
294 this.tableLayoutPanel1.ResumeLayout(false);
295 this.tableLayoutPanel1.PerformLayout();
16 office 296 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
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();
15 office 302 this.ResumeLayout(false);
16 office 303 this.PerformLayout();
15 office 304  
305 }
306  
307 #endregion
308  
309 private HamBook.Utilities.Controls.DoubleBufferedDataGridView dataGridView1;
310 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
311 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
312 private System.Windows.Forms.Button button1;
313 private System.Windows.Forms.Button button2;
314 private System.Windows.Forms.StatusStrip statusStrip1;
315 private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
316 private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
317 private System.Windows.Forms.DataGridViewTextBoxColumn LocationColumn;
318 private System.Windows.Forms.DataGridViewTextBoxColumn FrequencyColumn;
319 private System.Windows.Forms.DataGridViewComboBoxColumn ClarifierDirectionColumn;
320 private System.Windows.Forms.DataGridViewTextBoxColumn ClarifierOffsetColumn;
321 private System.Windows.Forms.DataGridViewCheckBoxColumn ClarColumn;
322 private System.Windows.Forms.DataGridViewComboBoxColumn ModeColumn;
323 private System.Windows.Forms.DataGridViewComboBoxColumn CtcssColumn;
324 private System.Windows.Forms.DataGridViewComboBoxColumn PhaseColumn;
325 private System.Windows.Forms.DataGridViewCheckBoxColumn TagColumn;
326 private System.Windows.Forms.DataGridViewTextBoxColumn TextColumn;
16 office 327 private System.Windows.Forms.MenuStrip menuStrip1;
328 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
329 private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem;
330 private System.Windows.Forms.ToolStripMenuItem exportToolStripMenuItem;
331 private System.Windows.Forms.SaveFileDialog saveFileDialog1;
332 private System.Windows.Forms.OpenFileDialog openFileDialog1;
15 office 333 }
334 }