mirror of
https://github.com/xenia-project/dockpanelsuite.git
synced 2026-01-31 01:25:23 +01:00
There's religion, politics, and tabs vs spaces. Regardless of your view it should be consistent, and since I'm implementing the change we're going spaces. If we need justification beyond my personal preference, this is the default in Visual Studio.
111 lines
4.6 KiB
C#
111 lines
4.6 KiB
C#
namespace DockSample
|
|
{
|
|
partial class DummyTaskList
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DummyTaskList));
|
|
this.listView1 = new System.Windows.Forms.ListView();
|
|
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
|
|
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
|
|
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
|
|
this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
|
|
this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
|
|
this.SuspendLayout();
|
|
//
|
|
// listView1
|
|
//
|
|
this.listView1.AllowColumnReorder = true;
|
|
this.listView1.AutoArrange = false;
|
|
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader1,
|
|
this.columnHeader2,
|
|
this.columnHeader3,
|
|
this.columnHeader4,
|
|
this.columnHeader5});
|
|
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listView1.FullRowSelect = true;
|
|
this.listView1.HideSelection = false;
|
|
this.listView1.Location = new System.Drawing.Point(0, 3);
|
|
this.listView1.MultiSelect = false;
|
|
this.listView1.Name = "listView1";
|
|
this.listView1.Size = new System.Drawing.Size(337, 370);
|
|
this.listView1.TabIndex = 0;
|
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|
this.listView1.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnHeader1
|
|
//
|
|
this.columnHeader1.Text = "!";
|
|
this.columnHeader1.Width = 16;
|
|
//
|
|
// columnHeader2
|
|
//
|
|
this.columnHeader2.Text = "";
|
|
this.columnHeader2.Width = 16;
|
|
//
|
|
// columnHeader3
|
|
//
|
|
this.columnHeader3.Text = "Description";
|
|
this.columnHeader3.Width = 300;
|
|
//
|
|
// columnHeader4
|
|
//
|
|
this.columnHeader4.Text = "File";
|
|
this.columnHeader4.Width = 150;
|
|
//
|
|
// columnHeader5
|
|
//
|
|
this.columnHeader5.Text = "Line";
|
|
//
|
|
// DummyTaskList
|
|
//
|
|
this.ClientSize = new System.Drawing.Size(337, 376);
|
|
this.Controls.Add(this.listView1);
|
|
this.DockAreas = ((WeifenLuo.WinFormsUI.Docking.DockAreas)(((((WeifenLuo.WinFormsUI.Docking.DockAreas.Float | WeifenLuo.WinFormsUI.Docking.DockAreas.DockLeft)
|
|
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockRight)
|
|
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockTop)
|
|
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockBottom)));
|
|
this.HideOnClose = true;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "DummyTaskList";
|
|
this.Padding = new System.Windows.Forms.Padding(0, 3, 0, 3);
|
|
this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockTopAutoHide;
|
|
this.TabText = "Task List";
|
|
this.Text = "Task List";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listView1;
|
|
private System.Windows.Forms.ColumnHeader columnHeader1;
|
|
private System.Windows.Forms.ColumnHeader columnHeader2;
|
|
private System.Windows.Forms.ColumnHeader columnHeader3;
|
|
private System.Windows.Forms.ColumnHeader columnHeader4;
|
|
private System.Windows.Forms.ColumnHeader columnHeader5;
|
|
}
|
|
} |