Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm/3.2/MainFormBase.Designer.cs @ 2340

Last change on this file since 2340 was 2334, checked in by mkommend, 15 years ago

added progressBar to the status strip (ticket #716)

File size: 3.7 KB
RevLine 
[2233]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      this.menuStrip = new System.Windows.Forms.MenuStrip();
27      this.toolStrip = new System.Windows.Forms.ToolStrip();
28      this.statusStrip = new System.Windows.Forms.StatusStrip();
[2334]29      this.toolStripProgressBar = new System.Windows.Forms.ToolStripProgressBar();
30      this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
[2233]31      this.statusStrip.SuspendLayout();
32      this.SuspendLayout();
33      //
34      // menuStrip
35      //
36      this.menuStrip.Location = new System.Drawing.Point(0, 0);
37      this.menuStrip.Name = "menuStrip";
38      this.menuStrip.Size = new System.Drawing.Size(624, 24);
39      this.menuStrip.TabIndex = 0;
40      this.menuStrip.Text = "menuStrip";
41      //
42      // toolStrip
43      //
44      this.toolStrip.Location = new System.Drawing.Point(0, 24);
45      this.toolStrip.Name = "toolStrip";
46      this.toolStrip.Size = new System.Drawing.Size(624, 25);
47      this.toolStrip.TabIndex = 1;
48      //
49      // statusStrip
50      //
51      this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
[2334]52            this.toolStripProgressBar,
53            this.toolStripStatusLabel});
[2233]54      this.statusStrip.Location = new System.Drawing.Point(0, 390);
55      this.statusStrip.Name = "statusStrip";
56      this.statusStrip.Size = new System.Drawing.Size(624, 22);
57      this.statusStrip.TabIndex = 2;
58      this.statusStrip.Text = "statusStrip";
59      //
[2334]60      // toolStripProgressBar
[2233]61      //
[2334]62      this.toolStripProgressBar.Name = "toolStripProgressBar";
63      this.toolStripProgressBar.Size = new System.Drawing.Size(100, 16);
64      this.toolStripProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
65      this.toolStripProgressBar.Visible = false;
[2233]66      //
[2334]67      // toolStripStatusLabel
68      //
69      this.toolStripStatusLabel.Name = "toolStripStatusLabel";
70      this.toolStripStatusLabel.Size = new System.Drawing.Size(112, 17);
71      this.toolStripStatusLabel.Text = "toolStripStatusLabel";
72      //
[2233]73      // MainFormBase
74      //
75      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
76      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
77      this.ClientSize = new System.Drawing.Size(624, 412);
78      this.Controls.Add(this.statusStrip);
79      this.Controls.Add(this.toolStrip);
80      this.Controls.Add(this.menuStrip);
81      this.MainMenuStrip = this.menuStrip;
82      this.Name = "MainFormBase";
83      this.statusStrip.ResumeLayout(false);
84      this.statusStrip.PerformLayout();
85      this.ResumeLayout(false);
86      this.PerformLayout();
87
88    }
89
90    #endregion
91
92    private System.Windows.Forms.ToolStrip toolStrip;
93    private System.Windows.Forms.StatusStrip statusStrip;
[2268]94    protected System.Windows.Forms.MenuStrip menuStrip;
[2334]95    private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar;
96    private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel;
[2233]97  }
98}
Note: See TracBrowser for help on using the repository browser.