ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/xmltv_parser/main.Designer.cs
Revision: 31
Committed: Thu Mar 7 13:46:39 2013 UTC (10 years, 9 months ago) by william
File size: 8723 byte(s)
Log Message:
+ add support to save and read serialized Program/Channel data

File Contents

# Content
1 namespace xmltv_parser
2 {
3 partial class main
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.lstPrograms = new System.Windows.Forms.ListView();
32 this.colChannel = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
33 this.colTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
34 this.colSubTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
35 this.colDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
36 this.ColStart = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
37 this.colEnd = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
38 this.xmltv_file_chooser = new System.Windows.Forms.OpenFileDialog();
39 this.menuStrip1 = new System.Windows.Forms.MenuStrip();
40 this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
41 this.mnuItemOpenXMLTVFile = new System.Windows.Forms.ToolStripMenuItem();
42 this.mnuItemOpenSavedData = new System.Windows.Forms.ToolStripMenuItem();
43 this.mnuItemSaveData = new System.Windows.Forms.ToolStripMenuItem();
44 this.xmltv_program_data_saver = new System.Windows.Forms.SaveFileDialog();
45 this.xmltv_program_data_loader = new System.Windows.Forms.OpenFileDialog();
46 this.menuStrip1.SuspendLayout();
47 this.SuspendLayout();
48 //
49 // lstPrograms
50 //
51 this.lstPrograms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
52 this.colChannel,
53 this.colTitle,
54 this.colSubTitle,
55 this.colDescription,
56 this.ColStart,
57 this.colEnd});
58 this.lstPrograms.Dock = System.Windows.Forms.DockStyle.Fill;
59 this.lstPrograms.FullRowSelect = true;
60 this.lstPrograms.HideSelection = false;
61 this.lstPrograms.Location = new System.Drawing.Point(0, 24);
62 this.lstPrograms.MultiSelect = false;
63 this.lstPrograms.Name = "lstPrograms";
64 this.lstPrograms.Size = new System.Drawing.Size(818, 408);
65 this.lstPrograms.TabIndex = 0;
66 this.lstPrograms.UseCompatibleStateImageBehavior = false;
67 this.lstPrograms.View = System.Windows.Forms.View.Details;
68 //
69 // colChannel
70 //
71 this.colChannel.Text = "Channel:";
72 //
73 // colTitle
74 //
75 this.colTitle.Text = "Title:";
76 //
77 // colSubTitle
78 //
79 this.colSubTitle.Text = "Sub-Title:";
80 //
81 // colDescription
82 //
83 this.colDescription.Text = "Description:";
84 //
85 // ColStart
86 //
87 this.ColStart.Text = "Start:";
88 //
89 // colEnd
90 //
91 this.colEnd.Text = "End:";
92 //
93 // xmltv_file_chooser
94 //
95 this.xmltv_file_chooser.DefaultExt = "xml";
96 this.xmltv_file_chooser.FileName = "tvguide.xml";
97 this.xmltv_file_chooser.Filter = "*.xml|XMLTV Guide";
98 //
99 // menuStrip1
100 //
101 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
102 this.mnuFile});
103 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
104 this.menuStrip1.Name = "menuStrip1";
105 this.menuStrip1.Size = new System.Drawing.Size(818, 24);
106 this.menuStrip1.TabIndex = 1;
107 this.menuStrip1.Text = "menuStrip1";
108 //
109 // mnuFile
110 //
111 this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
112 this.mnuItemOpenXMLTVFile,
113 this.mnuItemOpenSavedData,
114 this.mnuItemSaveData});
115 this.mnuFile.Name = "mnuFile";
116 this.mnuFile.Size = new System.Drawing.Size(37, 20);
117 this.mnuFile.Text = "&File";
118 //
119 // mnuItemOpenXMLTVFile
120 //
121 this.mnuItemOpenXMLTVFile.Name = "mnuItemOpenXMLTVFile";
122 this.mnuItemOpenXMLTVFile.Size = new System.Drawing.Size(165, 22);
123 this.mnuItemOpenXMLTVFile.Text = "Open &XMLTV File";
124 this.mnuItemOpenXMLTVFile.Click += new System.EventHandler(this.mnuItemOpenXMLTVFile_Click);
125 //
126 // mnuItemOpenSavedData
127 //
128 this.mnuItemOpenSavedData.Name = "mnuItemOpenSavedData";
129 this.mnuItemOpenSavedData.Size = new System.Drawing.Size(165, 22);
130 this.mnuItemOpenSavedData.Text = "Open &Saved Data";
131 this.mnuItemOpenSavedData.Click += new System.EventHandler(this.mnuItemOpenSavedData_Click);
132 //
133 // mnuItemSaveData
134 //
135 this.mnuItemSaveData.Name = "mnuItemSaveData";
136 this.mnuItemSaveData.Size = new System.Drawing.Size(165, 22);
137 this.mnuItemSaveData.Text = "Save &Data";
138 this.mnuItemSaveData.Click += new System.EventHandler(this.mnuItemSaveData_Click);
139 //
140 // xmltv_program_data_saver
141 //
142 this.xmltv_program_data_saver.DefaultExt = "bin";
143 this.xmltv_program_data_saver.FileName = "xmltv.bin";
144 this.xmltv_program_data_saver.Filter = "*.bin|Binary XMLTV Data";
145 //
146 // xmltv_program_data_loader
147 //
148 this.xmltv_program_data_loader.DefaultExt = "bin";
149 this.xmltv_program_data_loader.FileName = "xmltv.bin";
150 this.xmltv_program_data_loader.Filter = "*.bin|Binary XMLTV Data";
151 //
152 // main
153 //
154 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
155 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
156 this.ClientSize = new System.Drawing.Size(818, 432);
157 this.Controls.Add(this.lstPrograms);
158 this.Controls.Add(this.menuStrip1);
159 this.MainMenuStrip = this.menuStrip1;
160 this.Name = "main";
161 this.Text = "main";
162 this.Load += new System.EventHandler(this.main_Load);
163 this.Shown += new System.EventHandler(this.main_Shown);
164 this.menuStrip1.ResumeLayout(false);
165 this.menuStrip1.PerformLayout();
166 this.ResumeLayout(false);
167 this.PerformLayout();
168
169 }
170
171 #endregion
172
173 private System.Windows.Forms.ListView lstPrograms;
174 private System.Windows.Forms.ColumnHeader colChannel;
175 private System.Windows.Forms.ColumnHeader colTitle;
176 private System.Windows.Forms.ColumnHeader colSubTitle;
177 private System.Windows.Forms.ColumnHeader colDescription;
178 private System.Windows.Forms.ColumnHeader ColStart;
179 private System.Windows.Forms.ColumnHeader colEnd;
180 private System.Windows.Forms.OpenFileDialog xmltv_file_chooser;
181 private System.Windows.Forms.MenuStrip menuStrip1;
182 private System.Windows.Forms.ToolStripMenuItem mnuFile;
183 private System.Windows.Forms.ToolStripMenuItem mnuItemOpenXMLTVFile;
184 private System.Windows.Forms.ToolStripMenuItem mnuItemOpenSavedData;
185 private System.Windows.Forms.ToolStripMenuItem mnuItemSaveData;
186 private System.Windows.Forms.SaveFileDialog xmltv_program_data_saver;
187 private System.Windows.Forms.OpenFileDialog xmltv_program_data_loader;
188 }
189 }
190