namespace xmltv_parser
{
partial class main
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.lstPrograms = new System.Windows.Forms.ListView();
this.colChannel = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colSubTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
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.xmltv_program_data_saver = new System.Windows.Forms.SaveFileDialog();
this.xmltv_program_data_loader = new System.Windows.Forms.OpenFileDialog();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// lstPrograms
//
this.lstPrograms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colChannel,
this.colTitle,
this.colSubTitle,
this.colDescription,
this.ColStart,
this.colEnd});
this.lstPrograms.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstPrograms.FullRowSelect = true;
this.lstPrograms.HideSelection = false;
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, 408);
this.lstPrograms.TabIndex = 0;
this.lstPrograms.UseCompatibleStateImageBehavior = false;
this.lstPrograms.View = System.Windows.Forms.View.Details;
//
// colChannel
//
this.colChannel.Text = "Channel:";
//
// colTitle
//
this.colTitle.Text = "Title:";
//
// colSubTitle
//
this.colSubTitle.Text = "Sub-Title:";
//
// colDescription
//
this.colDescription.Text = "Description:";
//
// ColStart
//
this.ColStart.Text = "Start:";
//
// colEnd
//
this.colEnd.Text = "End:";
//
// xmltv_file_chooser
//
this.xmltv_file_chooser.DefaultExt = "xml";
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);
//
// xmltv_program_data_saver
//
this.xmltv_program_data_saver.DefaultExt = "bin";
this.xmltv_program_data_saver.FileName = "xmltv.bin";
this.xmltv_program_data_saver.Filter = "*.bin|Binary XMLTV Data";
//
// xmltv_program_data_loader
//
this.xmltv_program_data_loader.DefaultExt = "bin";
this.xmltv_program_data_loader.FileName = "xmltv.bin";
this.xmltv_program_data_loader.Filter = "*.bin|Binary XMLTV Data";
//
// 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();
}
#endregion
private System.Windows.Forms.ListView lstPrograms;
private System.Windows.Forms.ColumnHeader colChannel;
private System.Windows.Forms.ColumnHeader colTitle;
private System.Windows.Forms.ColumnHeader colSubTitle;
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;
private System.Windows.Forms.SaveFileDialog xmltv_program_data_saver;
private System.Windows.Forms.OpenFileDialog xmltv_program_data_loader;
}
}