Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Mainform refactoring/HeuristicLab.MainForm/3.2/MainFormBase.Designer.cs @ 2437

Last change on this file since 2437 was 2407, checked in by swagner, 15 years ago

Minor code cleanup (#771)

File size: 3.9 KB
Line 
1namespace HeuristicLab.MainForm {
2  partial class MainFormBase {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFormBase));
27      this.menuStrip = new System.Windows.Forms.MenuStrip();
28      this.toolStrip = new System.Windows.Forms.ToolStrip();
29      this.statusStrip = new System.Windows.Forms.StatusStrip();
30      this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
31      this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
32      this.statusStrip.SuspendLayout();
33      this.SuspendLayout();
34      //
35      // menuStrip
36      //
37      this.menuStrip.Location = new System.Drawing.Point(0, 0);
38      this.menuStrip.Name = "menuStrip";
39      this.menuStrip.Size = new System.Drawing.Size(624, 24);
40      this.menuStrip.TabIndex = 0;
41      this.menuStrip.Text = "menuStrip";
42      //
43      // toolStrip
44      //
45      this.toolStrip.Location = new System.Drawing.Point(0, 24);
46      this.toolStrip.Name = "toolStrip";
47      this.toolStrip.Size = new System.Drawing.Size(624, 25);
48      this.toolStrip.TabIndex = 1;
49      //
50      // statusStrip
51      //
52      this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
53            this.toolStripProgressBar,
54            this.toolStripStatusLabel});
55      this.statusStrip.Location = new System.Drawing.Point(0, 390);
56      this.statusStrip.Name = "statusStrip";
57      this.statusStrip.Size = new System.Drawing.Size(624, 22);
58      this.statusStrip.TabIndex = 2;
59      this.statusStrip.Text = "statusStrip";
60      //
61      // toolStripProgressBar
62      //
63      this.toolStripProgressBar.Name = "toolStripProgressBar";
64      this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
65      this.toolStripProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
66      this.toolStripProgressBar.Visible = false;
67      //
68      // toolStripStatusLabel
69      //
70      this.toolStripStatusLabel.Name = "toolStripStatusLabel";
71      this.toolStripStatusLabel.Size = new System.Drawing.Size(112, 17);
72      this.toolStripStatusLabel.Text = "toolStripStatusLabel";
73      //
74      // MainFormBase
75      //
76      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
77      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
78      this.ClientSize = new System.Drawing.Size(624, 412);
79      this.Controls.Add(this.statusStrip);
80      this.Controls.Add(this.toolStrip);
81      this.Controls.Add(this.menuStrip);
82      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
83      this.MainMenuStrip = this.menuStrip;
84      this.Name = "MainFormBase";
85      this.statusStrip.ResumeLayout(false);
86      this.statusStrip.PerformLayout();
87      this.ResumeLayout(false);
88      this.PerformLayout();
89
90    }
91
92    #endregion
93
94    private System.Windows.Forms.ToolStrip toolStrip;
95    private System.Windows.Forms.StatusStrip statusStrip;
96    protected System.Windows.Forms.MenuStrip menuStrip;
97    private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar;
98    private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
99  }
100}
Note: See TracBrowser for help on using the repository browser.