|
@@ -40,6 +40,7 @@ namespace ISCSIConsole
|
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
|
this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
|
|
|
this.LoadConfigButton = new System.Windows.Forms.Button();
|
|
|
+ this.statusStrip1.SuspendLayout();
|
|
|
this.SuspendLayout();
|
|
|
//
|
|
|
// btnStart
|
|
@@ -129,6 +130,8 @@ namespace ISCSIConsole
|
|
|
//
|
|
|
// statusStrip1
|
|
|
//
|
|
|
+ this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
+ this.lblStatus});
|
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 159);
|
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
|
this.statusStrip1.Size = new System.Drawing.Size(464, 22);
|
|
@@ -176,6 +179,8 @@ namespace ISCSIConsole
|
|
|
this.Text = "iSCSI Console";
|
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
|
this.Shown += new System.EventHandler(this.MainForm_Shown);
|
|
|
+ this.statusStrip1.ResumeLayout(false);
|
|
|
+ this.statusStrip1.PerformLayout();
|
|
|
this.ResumeLayout(false);
|
|
|
this.PerformLayout();
|
|
|
|