[2233] | 1 | namespace 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();
|
---|
| 29 | this.statusStripLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
---|
| 30 | this.statusStrip.SuspendLayout();
|
---|
| 31 | this.SuspendLayout();
|
---|
| 32 | //
|
---|
| 33 | // menuStrip
|
---|
| 34 | //
|
---|
| 35 | this.menuStrip.Location = new System.Drawing.Point(0, 0);
|
---|
| 36 | this.menuStrip.Name = "menuStrip";
|
---|
| 37 | this.menuStrip.Size = new System.Drawing.Size(624, 24);
|
---|
| 38 | this.menuStrip.TabIndex = 0;
|
---|
| 39 | this.menuStrip.Text = "menuStrip";
|
---|
| 40 | //
|
---|
| 41 | // toolStrip
|
---|
| 42 | //
|
---|
| 43 | this.toolStrip.Location = new System.Drawing.Point(0, 24);
|
---|
| 44 | this.toolStrip.Name = "toolStrip";
|
---|
| 45 | this.toolStrip.Size = new System.Drawing.Size(624, 25);
|
---|
| 46 | this.toolStrip.TabIndex = 1;
|
---|
| 47 | //
|
---|
| 48 | // statusStrip
|
---|
| 49 | //
|
---|
| 50 | this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 51 | this.statusStripLabel});
|
---|
| 52 | this.statusStrip.Location = new System.Drawing.Point(0, 390);
|
---|
| 53 | this.statusStrip.Name = "statusStrip";
|
---|
| 54 | this.statusStrip.Size = new System.Drawing.Size(624, 22);
|
---|
| 55 | this.statusStrip.TabIndex = 2;
|
---|
| 56 | this.statusStrip.Text = "statusStrip";
|
---|
| 57 | //
|
---|
| 58 | // statusStripLabel
|
---|
| 59 | //
|
---|
| 60 | this.statusStripLabel.Name = "statusStripLabel";
|
---|
| 61 | this.statusStripLabel.Size = new System.Drawing.Size(0, 17);
|
---|
| 62 | //
|
---|
| 63 | // MainFormBase
|
---|
| 64 | //
|
---|
| 65 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 66 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 67 | this.ClientSize = new System.Drawing.Size(624, 412);
|
---|
| 68 | this.Controls.Add(this.statusStrip);
|
---|
| 69 | this.Controls.Add(this.toolStrip);
|
---|
| 70 | this.Controls.Add(this.menuStrip);
|
---|
| 71 | this.MainMenuStrip = this.menuStrip;
|
---|
| 72 | this.Name = "MainFormBase";
|
---|
| 73 | this.statusStrip.ResumeLayout(false);
|
---|
| 74 | this.statusStrip.PerformLayout();
|
---|
| 75 | this.ResumeLayout(false);
|
---|
| 76 | this.PerformLayout();
|
---|
| 77 |
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | #endregion
|
---|
| 81 |
|
---|
| 82 | private System.Windows.Forms.MenuStrip menuStrip;
|
---|
| 83 | private System.Windows.Forms.ToolStrip toolStrip;
|
---|
| 84 | private System.Windows.Forms.StatusStrip statusStrip;
|
---|
| 85 | private System.Windows.Forms.ToolStripStatusLabel statusStripLabel;
|
---|
| 86 | }
|
---|
| 87 | } |
---|