HamBook – Blame information for rev 56

Subversion Repositories:
Rev:
Rev Author Line No. Line
54 office 1 namespace HamBook
2 {
3 partial class MenuForm
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9  
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22  
23 #region Windows Form Designer generated code
24  
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MenuForm));
32 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
56 office 33 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
34 this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
35 this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54 office 36 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
37 this.dataGridView1 = new System.Windows.Forms.DataGridView();
38 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
39 this.label1 = new System.Windows.Forms.Label();
40 this.textBox1 = new System.Windows.Forms.TextBox();
41 this.statusStrip1 = new System.Windows.Forms.StatusStrip();
42 this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
43 this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
44 this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
45 this.button1 = new System.Windows.Forms.Button();
46 this.button2 = new System.Windows.Forms.Button();
56 office 47 this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
48 this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
49 this.menuStrip1.SuspendLayout();
54 office 50 this.tableLayoutPanel1.SuspendLayout();
51 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
52 this.tableLayoutPanel2.SuspendLayout();
53 this.statusStrip1.SuspendLayout();
54 this.tableLayoutPanel3.SuspendLayout();
55 this.SuspendLayout();
56 //
57 // menuStrip1
58 //
56 office 59 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
60 this.fileToolStripMenuItem});
54 office 61 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
62 this.menuStrip1.Name = "menuStrip1";
63 this.menuStrip1.Size = new System.Drawing.Size(800, 24);
64 this.menuStrip1.TabIndex = 0;
65 this.menuStrip1.Text = "menuStrip1";
66 //
56 office 67 // fileToolStripMenuItem
68 //
69 this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
70 this.importToolStripMenuItem,
71 this.exportToolStripMenuItem});
72 this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
73 this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
74 this.fileToolStripMenuItem.Text = "File";
75 //
76 // importToolStripMenuItem
77 //
78 this.importToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("importToolStripMenuItem.Image")));
79 this.importToolStripMenuItem.Name = "importToolStripMenuItem";
80 this.importToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
81 this.importToolStripMenuItem.Text = "Import";
82 this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
83 //
84 // exportToolStripMenuItem
85 //
86 this.exportToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("exportToolStripMenuItem.Image")));
87 this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
88 this.exportToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
89 this.exportToolStripMenuItem.Text = "Export";
90 this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
91 //
54 office 92 // tableLayoutPanel1
93 //
94 this.tableLayoutPanel1.ColumnCount = 1;
95 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
96 this.tableLayoutPanel1.Controls.Add(this.dataGridView1, 0, 1);
97 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
98 this.tableLayoutPanel1.Controls.Add(this.statusStrip1, 0, 3);
99 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 2);
100 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
101 this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
102 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
103 this.tableLayoutPanel1.RowCount = 4;
104 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
105 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
106 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 34F));
107 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
108 this.tableLayoutPanel1.Size = new System.Drawing.Size(800, 426);
109 this.tableLayoutPanel1.TabIndex = 1;
110 //
111 // dataGridView1
112 //
113 this.dataGridView1.AllowUserToAddRows = false;
114 this.dataGridView1.AllowUserToDeleteRows = false;
115 this.dataGridView1.AllowUserToResizeRows = false;
116 this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
117 this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
118 this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
119 this.dataGridView1.Location = new System.Drawing.Point(3, 35);
120 this.dataGridView1.Name = "dataGridView1";
121 this.dataGridView1.RowHeadersVisible = false;
122 this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
123 this.dataGridView1.Size = new System.Drawing.Size(794, 324);
124 this.dataGridView1.TabIndex = 0;
125 this.dataGridView1.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.DataGridView1_DataError);
126 this.dataGridView1.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.DataGridView1_RowPrePaint);
127 //
128 // tableLayoutPanel2
129 //
130 this.tableLayoutPanel2.ColumnCount = 2;
131 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
132 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 90F));
133 this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
134 this.tableLayoutPanel2.Controls.Add(this.textBox1, 1, 0);
135 this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
136 this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 3);
137 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
138 this.tableLayoutPanel2.RowCount = 1;
139 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
140 this.tableLayoutPanel2.Size = new System.Drawing.Size(794, 26);
141 this.tableLayoutPanel2.TabIndex = 1;
142 //
143 // label1
144 //
145 this.label1.Anchor = System.Windows.Forms.AnchorStyles.Right;
146 this.label1.AutoSize = true;
147 this.label1.Location = new System.Drawing.Point(35, 6);
148 this.label1.Name = "label1";
149 this.label1.Size = new System.Drawing.Size(41, 13);
150 this.label1.TabIndex = 0;
151 this.label1.Text = "Search";
152 //
153 // textBox1
154 //
155 this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
156 | System.Windows.Forms.AnchorStyles.Left)
157 | System.Windows.Forms.AnchorStyles.Right)));
158 this.textBox1.Location = new System.Drawing.Point(82, 3);
159 this.textBox1.Name = "textBox1";
160 this.textBox1.Size = new System.Drawing.Size(709, 20);
161 this.textBox1.TabIndex = 1;
162 this.textBox1.TextChanged += new System.EventHandler(this.TextBox1_TextChanged);
163 //
164 // statusStrip1
165 //
166 this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
167 this.toolStripProgressBar1,
168 this.toolStripStatusLabel1});
169 this.statusStrip1.Location = new System.Drawing.Point(0, 404);
170 this.statusStrip1.Name = "statusStrip1";
171 this.statusStrip1.Size = new System.Drawing.Size(800, 22);
172 this.statusStrip1.TabIndex = 2;
173 this.statusStrip1.Text = "statusStrip1";
174 //
175 // toolStripProgressBar1
176 //
177 this.toolStripProgressBar1.Name = "toolStripProgressBar1";
178 this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
179 //
180 // toolStripStatusLabel1
181 //
182 this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
183 this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 17);
184 //
185 // tableLayoutPanel3
186 //
187 this.tableLayoutPanel3.ColumnCount = 3;
188 this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 80F));
189 this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
190 this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F));
191 this.tableLayoutPanel3.Controls.Add(this.button1, 1, 0);
192 this.tableLayoutPanel3.Controls.Add(this.button2, 2, 0);
193 this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
194 this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 365);
195 this.tableLayoutPanel3.Name = "tableLayoutPanel3";
196 this.tableLayoutPanel3.RowCount = 1;
197 this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
198 this.tableLayoutPanel3.Size = new System.Drawing.Size(794, 28);
199 this.tableLayoutPanel3.TabIndex = 3;
200 //
201 // button1
202 //
203 this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
204 | System.Windows.Forms.AnchorStyles.Left)
205 | System.Windows.Forms.AnchorStyles.Right)));
206 this.button1.Location = new System.Drawing.Point(638, 3);
207 this.button1.Name = "button1";
208 this.button1.Size = new System.Drawing.Size(73, 22);
209 this.button1.TabIndex = 0;
210 this.button1.Text = "Read";
211 this.button1.UseVisualStyleBackColor = true;
212 this.button1.Click += new System.EventHandler(this.button1_Click);
213 //
214 // button2
215 //
216 this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
217 | System.Windows.Forms.AnchorStyles.Left)
218 | System.Windows.Forms.AnchorStyles.Right)));
219 this.button2.Location = new System.Drawing.Point(717, 3);
220 this.button2.Name = "button2";
221 this.button2.Size = new System.Drawing.Size(74, 22);
222 this.button2.TabIndex = 1;
223 this.button2.Text = "Write";
224 this.button2.UseVisualStyleBackColor = true;
225 this.button2.Click += new System.EventHandler(this.button2_Click);
226 //
56 office 227 // saveFileDialog1
228 //
229 this.saveFileDialog1.Filter = "XML Files|*.xml";
230 this.saveFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog1_FileOk);
231 //
232 // openFileDialog1
233 //
234 this.openFileDialog1.FileName = "openFileDialog1";
235 this.openFileDialog1.Filter = "XML Files|*.xml";
236 this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
237 //
54 office 238 // MenuForm
239 //
240 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
241 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
242 this.ClientSize = new System.Drawing.Size(800, 450);
243 this.Controls.Add(this.tableLayoutPanel1);
244 this.Controls.Add(this.menuStrip1);
245 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
246 this.MainMenuStrip = this.menuStrip1;
247 this.Name = "MenuForm";
248 this.Text = "HamBook: Menu";
249 this.Load += new System.EventHandler(this.MenuForm_Load);
56 office 250 this.menuStrip1.ResumeLayout(false);
251 this.menuStrip1.PerformLayout();
54 office 252 this.tableLayoutPanel1.ResumeLayout(false);
253 this.tableLayoutPanel1.PerformLayout();
254 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
255 this.tableLayoutPanel2.ResumeLayout(false);
256 this.tableLayoutPanel2.PerformLayout();
257 this.statusStrip1.ResumeLayout(false);
258 this.statusStrip1.PerformLayout();
259 this.tableLayoutPanel3.ResumeLayout(false);
260 this.ResumeLayout(false);
261 this.PerformLayout();
262  
263 }
264  
265 #endregion
266  
267 private System.Windows.Forms.MenuStrip menuStrip1;
268 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
269 private System.Windows.Forms.DataGridView dataGridView1;
270 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
271 private System.Windows.Forms.Label label1;
272 private System.Windows.Forms.TextBox textBox1;
273 private System.Windows.Forms.StatusStrip statusStrip1;
274 private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
275 private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
276 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
277 private System.Windows.Forms.Button button1;
278 private System.Windows.Forms.Button button2;
56 office 279 private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
280 private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem;
281 private System.Windows.Forms.ToolStripMenuItem exportToolStripMenuItem;
282 private System.Windows.Forms.SaveFileDialog saveFileDialog1;
283 private System.Windows.Forms.OpenFileDialog openFileDialog1;
54 office 284 }
285 }