HamBook – Diff between revs 54 and 56

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 54 Rev 56
Line 28... Line 28...
28 /// </summary> 28 /// </summary>
29 private void InitializeComponent() 29 private void InitializeComponent()
30 { 30 {
31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MenuForm)); 31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MenuForm));
32 this.menuStrip1 = new System.Windows.Forms.MenuStrip(); 32 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
-   33 this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
-   34 this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
-   35 this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); 36 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
34 this.dataGridView1 = new System.Windows.Forms.DataGridView(); 37 this.dataGridView1 = new System.Windows.Forms.DataGridView();
35 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); 38 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
36 this.label1 = new System.Windows.Forms.Label(); 39 this.label1 = new System.Windows.Forms.Label();
37 this.textBox1 = new System.Windows.Forms.TextBox(); 40 this.textBox1 = new System.Windows.Forms.TextBox();
Line 39... Line 42...
39 this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar(); 42 this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
40 this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); 43 this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
41 this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); 44 this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
42 this.button1 = new System.Windows.Forms.Button(); 45 this.button1 = new System.Windows.Forms.Button();
43 this.button2 = new System.Windows.Forms.Button(); 46 this.button2 = new System.Windows.Forms.Button();
-   47 this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
-   48 this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
-   49 this.menuStrip1.SuspendLayout();
44 this.tableLayoutPanel1.SuspendLayout(); 50 this.tableLayoutPanel1.SuspendLayout();
45 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); 51 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
46 this.tableLayoutPanel2.SuspendLayout(); 52 this.tableLayoutPanel2.SuspendLayout();
47 this.statusStrip1.SuspendLayout(); 53 this.statusStrip1.SuspendLayout();
48 this.tableLayoutPanel3.SuspendLayout(); 54 this.tableLayoutPanel3.SuspendLayout();
49 this.SuspendLayout(); 55 this.SuspendLayout();
50 // 56 //
51 // menuStrip1 57 // menuStrip1
52 // 58 //
-   59 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
-   60 this.fileToolStripMenuItem});
53 this.menuStrip1.Location = new System.Drawing.Point(0, 0); 61 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
54 this.menuStrip1.Name = "menuStrip1"; 62 this.menuStrip1.Name = "menuStrip1";
55 this.menuStrip1.Size = new System.Drawing.Size(800, 24); 63 this.menuStrip1.Size = new System.Drawing.Size(800, 24);
56 this.menuStrip1.TabIndex = 0; 64 this.menuStrip1.TabIndex = 0;
57 this.menuStrip1.Text = "menuStrip1"; 65 this.menuStrip1.Text = "menuStrip1";
58 // 66 //
-   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 //
59 // tableLayoutPanel1 92 // tableLayoutPanel1
60 // 93 //
61 this.tableLayoutPanel1.ColumnCount = 1; 94 this.tableLayoutPanel1.ColumnCount = 1;
62 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 95 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
63 this.tableLayoutPanel1.Controls.Add(this.dataGridView1, 0, 1); 96 this.tableLayoutPanel1.Controls.Add(this.dataGridView1, 0, 1);
Line 189... Line 222...
189 this.button2.TabIndex = 1; 222 this.button2.TabIndex = 1;
190 this.button2.Text = "Write"; 223 this.button2.Text = "Write";
191 this.button2.UseVisualStyleBackColor = true; 224 this.button2.UseVisualStyleBackColor = true;
192 this.button2.Click += new System.EventHandler(this.button2_Click); 225 this.button2.Click += new System.EventHandler(this.button2_Click);
193 // 226 //
-   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 //
194 // MenuForm 238 // MenuForm
195 // 239 //
196 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 240 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
197 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 241 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
198 this.ClientSize = new System.Drawing.Size(800, 450); 242 this.ClientSize = new System.Drawing.Size(800, 450);
Line 201... Line 245...
201 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 245 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
202 this.MainMenuStrip = this.menuStrip1; 246 this.MainMenuStrip = this.menuStrip1;
203 this.Name = "MenuForm"; 247 this.Name = "MenuForm";
204 this.Text = "HamBook: Menu"; 248 this.Text = "HamBook: Menu";
205 this.Load += new System.EventHandler(this.MenuForm_Load); 249 this.Load += new System.EventHandler(this.MenuForm_Load);
-   250 this.menuStrip1.ResumeLayout(false);
-   251 this.menuStrip1.PerformLayout();
206 this.tableLayoutPanel1.ResumeLayout(false); 252 this.tableLayoutPanel1.ResumeLayout(false);
207 this.tableLayoutPanel1.PerformLayout(); 253 this.tableLayoutPanel1.PerformLayout();
208 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); 254 ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
209 this.tableLayoutPanel2.ResumeLayout(false); 255 this.tableLayoutPanel2.ResumeLayout(false);
210 this.tableLayoutPanel2.PerformLayout(); 256 this.tableLayoutPanel2.PerformLayout();
Line 228... Line 274...
228 private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1; 274 private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
229 private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; 275 private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
230 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3; 276 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
231 private System.Windows.Forms.Button button1; 277 private System.Windows.Forms.Button button1;
232 private System.Windows.Forms.Button button2; 278 private System.Windows.Forms.Button button2;
-   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;
233 } 284 }
234 } 285 }
235   286