--- trunk/xmltv_parser/main.Designer.cs 2013/03/08 02:17:19 38 +++ trunk/xmltv_parser/main.Designer.cs 2013/03/08 02:19:26 39 @@ -43,7 +43,11 @@ this.mnuItemSaveData = new System.Windows.Forms.ToolStripMenuItem(); this.xmltv_program_data_saver = new System.Windows.Forms.SaveFileDialog(); this.xmltv_program_data_loader = new System.Windows.Forms.OpenFileDialog(); + this.statusStrip1 = new System.Windows.Forms.StatusStrip(); + this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); + this.txtStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.menuStrip1.SuspendLayout(); + this.statusStrip1.SuspendLayout(); this.SuspendLayout(); // // lstPrograms @@ -149,11 +153,35 @@ this.xmltv_program_data_loader.FileName = "xmltv.bin"; this.xmltv_program_data_loader.Filter = "*.bin|Binary XMLTV Data"; // + // statusStrip1 + // + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.lblStatus, + this.txtStatus}); + this.statusStrip1.Location = new System.Drawing.Point(0, 410); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.Size = new System.Drawing.Size(818, 22); + this.statusStrip1.TabIndex = 2; + this.statusStrip1.Text = "statusStrip1"; + // + // lblStatus + // + this.lblStatus.Name = "lblStatus"; + this.lblStatus.Size = new System.Drawing.Size(42, 17); + this.lblStatus.Text = "Status:"; + // + // txtStatus + // + this.txtStatus.Name = "txtStatus"; + this.txtStatus.Size = new System.Drawing.Size(52, 17); + this.txtStatus.Text = "txtStatus"; + // // main // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(818, 432); + this.Controls.Add(this.statusStrip1); this.Controls.Add(this.lstPrograms); this.Controls.Add(this.menuStrip1); this.MainMenuStrip = this.menuStrip1; @@ -163,6 +191,8 @@ this.Shown += new System.EventHandler(this.main_Shown); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); @@ -185,6 +215,9 @@ private System.Windows.Forms.ToolStripMenuItem mnuItemSaveData; private System.Windows.Forms.SaveFileDialog xmltv_program_data_saver; private System.Windows.Forms.OpenFileDialog xmltv_program_data_loader; + private System.Windows.Forms.StatusStrip statusStrip1; + private System.Windows.Forms.ToolStripStatusLabel lblStatus; + private System.Windows.Forms.ToolStripStatusLabel txtStatus; } } |