Parent Directory
|
Revision Log
|
Patch
--- trunk/xmltv_parser/main.Designer.cs 2013/03/07 09:26:52 17 +++ trunk/xmltv_parser/main.Designer.cs 2013/03/07 13:20:53 29 @@ -28,13 +28,65 @@ /// </summary> 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.SuspendLayout(); // - // Form1 + // 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, 0); + this.lstPrograms.MultiSelect = false; + this.lstPrograms.Name = "lstPrograms"; + this.lstPrograms.Size = new System.Drawing.Size(818, 432); + 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:"; + // + // main // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(284, 262); + this.ClientSize = new System.Drawing.Size(818, 432); + this.Controls.Add(this.lstPrograms); this.Name = "main"; this.Text = "main"; this.Load += new System.EventHandler(this.main_Load); @@ -44,6 +96,14 @@ } #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; } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |