Parent Directory
|
Revision Log
|
Patch
--- trunk/xmltv_parser/main.Designer.cs 2013/03/07 13:20:53 29 +++ trunk/xmltv_parser/main.Designer.cs 2013/03/07 13:36:42 30 @@ -35,6 +35,13 @@ this.colDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.ColStart = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colEnd = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.xmltv_file_chooser = new System.Windows.Forms.OpenFileDialog(); + this.menuStrip1 = new System.Windows.Forms.MenuStrip(); + this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuItemOpenXMLTVFile = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuItemOpenSavedData = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuItemSaveData = new System.Windows.Forms.ToolStripMenuItem(); + this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // lstPrograms @@ -49,10 +56,10 @@ this.lstPrograms.Dock = System.Windows.Forms.DockStyle.Fill; this.lstPrograms.FullRowSelect = true; this.lstPrograms.HideSelection = false; - this.lstPrograms.Location = new System.Drawing.Point(0, 0); + this.lstPrograms.Location = new System.Drawing.Point(0, 24); this.lstPrograms.MultiSelect = false; this.lstPrograms.Name = "lstPrograms"; - this.lstPrograms.Size = new System.Drawing.Size(818, 432); + this.lstPrograms.Size = new System.Drawing.Size(818, 408); this.lstPrograms.TabIndex = 0; this.lstPrograms.UseCompatibleStateImageBehavior = false; this.lstPrograms.View = System.Windows.Forms.View.Details; @@ -81,17 +88,68 @@ // this.colEnd.Text = "End:"; // + // xmltv_file_chooser + // + this.xmltv_file_chooser.FileName = "tvguide.xml"; + this.xmltv_file_chooser.Filter = "*.xml|XMLTV Guide"; + // + // menuStrip1 + // + this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.mnuFile}); + this.menuStrip1.Location = new System.Drawing.Point(0, 0); + this.menuStrip1.Name = "menuStrip1"; + this.menuStrip1.Size = new System.Drawing.Size(818, 24); + this.menuStrip1.TabIndex = 1; + this.menuStrip1.Text = "menuStrip1"; + // + // mnuFile + // + this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.mnuItemOpenXMLTVFile, + this.mnuItemOpenSavedData, + this.mnuItemSaveData}); + this.mnuFile.Name = "mnuFile"; + this.mnuFile.Size = new System.Drawing.Size(37, 20); + this.mnuFile.Text = "&File"; + // + // mnuItemOpenXMLTVFile + // + this.mnuItemOpenXMLTVFile.Name = "mnuItemOpenXMLTVFile"; + this.mnuItemOpenXMLTVFile.Size = new System.Drawing.Size(165, 22); + this.mnuItemOpenXMLTVFile.Text = "Open &XMLTV File"; + this.mnuItemOpenXMLTVFile.Click += new System.EventHandler(this.mnuItemOpenXMLTVFile_Click); + // + // mnuItemOpenSavedData + // + this.mnuItemOpenSavedData.Name = "mnuItemOpenSavedData"; + this.mnuItemOpenSavedData.Size = new System.Drawing.Size(165, 22); + this.mnuItemOpenSavedData.Text = "Open &Saved Data"; + this.mnuItemOpenSavedData.Click += new System.EventHandler(this.mnuItemOpenSavedData_Click); + // + // mnuItemSaveData + // + this.mnuItemSaveData.Name = "mnuItemSaveData"; + this.mnuItemSaveData.Size = new System.Drawing.Size(165, 22); + this.mnuItemSaveData.Text = "Save &Data"; + this.mnuItemSaveData.Click += new System.EventHandler(this.mnuItemSaveData_Click); + // // 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.lstPrograms); + this.Controls.Add(this.menuStrip1); + this.MainMenuStrip = this.menuStrip1; this.Name = "main"; this.Text = "main"; this.Load += new System.EventHandler(this.main_Load); this.Shown += new System.EventHandler(this.main_Shown); + this.menuStrip1.ResumeLayout(false); + this.menuStrip1.PerformLayout(); this.ResumeLayout(false); + this.PerformLayout(); } @@ -104,6 +162,12 @@ private System.Windows.Forms.ColumnHeader colDescription; private System.Windows.Forms.ColumnHeader ColStart; private System.Windows.Forms.ColumnHeader colEnd; + private System.Windows.Forms.OpenFileDialog xmltv_file_chooser; + private System.Windows.Forms.MenuStrip menuStrip1; + private System.Windows.Forms.ToolStripMenuItem mnuFile; + private System.Windows.Forms.ToolStripMenuItem mnuItemOpenXMLTVFile; + private System.Windows.Forms.ToolStripMenuItem mnuItemOpenSavedData; + private System.Windows.Forms.ToolStripMenuItem mnuItemSaveData; } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |