ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/xmltv_parser/trunk/xmltv_parser/main.Designer.cs
Revision: 30
Committed: Thu Mar 7 13:36:42 2013 UTC (10 years, 9 months ago) by william
File size: 7758 byte(s)
Log Message:

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.menuStrip1.SuspendLayout();
45 this.SuspendLayout();
46 //
47 // lstPrograms
48 //
49 this.lstPrograms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
50 this.colChannel,
51 this.colTitle,
52 this.colSubTitle,
53 this.colDescription,
54 this.ColStart,
55 this.colEnd});
56 this.lstPrograms.Dock = System.Windows.Forms.DockStyle.Fill;
57 this.lstPrograms.FullRowSelect = true;
58 this.lstPrograms.HideSelection = false;
59 this.lstPrograms.Location = new System.Drawing.Point(0, 24);
60 this.lstPrograms.MultiSelect = false;
61 this.lstPrograms.Name = "lstPrograms";
62 this.lstPrograms.Size = new System.Drawing.Size(818, 408);
63 this.lstPrograms.TabIndex = 0;
64 this.lstPrograms.UseCompatibleStateImageBehavior = false;
65 this.lstPrograms.View = System.Windows.Forms.View.Details;
66 //
67 // colChannel
68 //
69 this.colChannel.Text = "Channel:";
70 //
71 // colTitle
72 //
73 this.colTitle.Text = "Title:";
74 //
75 // colSubTitle
76 //
77 this.colSubTitle.Text = "Sub-Title:";
78 //
79 // colDescription
80 //
81 this.colDescription.Text = "Description:";
82 //
83 // ColStart
84 //
85 this.ColStart.Text = "Start:";
86 //
87 // colEnd
88 //
89 this.colEnd.Text = "End:";
90 //
91 // xmltv_file_chooser
92 //
93 this.xmltv_file_chooser.FileName = "tvguide.xml";
94 this.xmltv_file_chooser.Filter = "*.xml|XMLTV Guide";
95 //
96 // menuStrip1
97 //
98 this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
99 this.mnuFile});
100 this.menuStrip1.Location = new System.Drawing.Point(0, 0);
101 this.menuStrip1.Name = "menuStrip1";
102 this.menuStrip1.Size = new System.Drawing.Size(818, 24);
103 this.menuStrip1.TabIndex = 1;
104 this.menuStrip1.Text = "menuStrip1";
105 //
106 // mnuFile
107 //
108 this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
109 this.mnuItemOpenXMLTVFile,
110 this.mnuItemOpenSavedData,
111 this.mnuItemSaveData});
112 this.mnuFile.Name = "mnuFile";
113 this.mnuFile.Size = new System.Drawing.Size(37, 20);
114 this.mnuFile.Text = "&File";
115 //
116 // mnuItemOpenXMLTVFile
117 //
118 this.mnuItemOpenXMLTVFile.Name = "mnuItemOpenXMLTVFile";
119 this.mnuItemOpenXMLTVFile.Size = new System.Drawing.Size(165, 22);
120 this.mnuItemOpenXMLTVFile.Text = "Open &XMLTV File";
121 this.mnuItemOpenXMLTVFile.Click += new System.EventHandler(this.mnuItemOpenXMLTVFile_Click);
122 //
123 // mnuItemOpenSavedData
124 //
125 this.mnuItemOpenSavedData.Name = "mnuItemOpenSavedData";
126 this.mnuItemOpenSavedData.Size = new System.Drawing.Size(165, 22);
127 this.mnuItemOpenSavedData.Text = "Open &Saved Data";
128 this.mnuItemOpenSavedData.Click += new System.EventHandler(this.mnuItemOpenSavedData_Click);
129 //
130 // mnuItemSaveData
131 //
132 this.mnuItemSaveData.Name = "mnuItemSaveData";
133 this.mnuItemSaveData.Size = new System.Drawing.Size(165, 22);
134 this.mnuItemSaveData.Text = "Save &Data";
135 this.mnuItemSaveData.Click += new System.EventHandler(this.mnuItemSaveData_Click);
136 //
137 // main
138 //
139 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
140 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
141 this.ClientSize = new System.Drawing.Size(818, 432);
142 this.Controls.Add(this.lstPrograms);
143 this.Controls.Add(this.menuStrip1);
144 this.MainMenuStrip = this.menuStrip1;
145 this.Name = "main";
146 this.Text = "main";
147 this.Load += new System.EventHandler(this.main_Load);
148 this.Shown += new System.EventHandler(this.main_Shown);
149 this.menuStrip1.ResumeLayout(false);
150 this.menuStrip1.PerformLayout();
151 this.ResumeLayout(false);
152 this.PerformLayout();
153
154 }
155
156 #endregion
157
158 private System.Windows.Forms.ListView lstPrograms;
159 private System.Windows.Forms.ColumnHeader colChannel;
160 private System.Windows.Forms.ColumnHeader colTitle;
161 private System.Windows.Forms.ColumnHeader colSubTitle;
162 private System.Windows.Forms.ColumnHeader colDescription;
163 private System.Windows.Forms.ColumnHeader ColStart;
164 private System.Windows.Forms.ColumnHeader colEnd;
165 private System.Windows.Forms.OpenFileDialog xmltv_file_chooser;
166 private System.Windows.Forms.MenuStrip menuStrip1;
167 private System.Windows.Forms.ToolStripMenuItem mnuFile;
168 private System.Windows.Forms.ToolStripMenuItem mnuItemOpenXMLTVFile;
169 private System.Windows.Forms.ToolStripMenuItem mnuItemOpenSavedData;
170 private System.Windows.Forms.ToolStripMenuItem mnuItemSaveData;
171 }
172 }
173