Files
mirror-processhacker/trunk/ProcessHacker/Components/HandleList.Designer.cs
T
wj32 992dde27cc allow hiding of handles with no name
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@213 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2008-12-04 05:08:15 +00:00

90 lines
3.3 KiB
C#

namespace ProcessHacker
{
partial class HandleList
{
/// <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 Component 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()
{
this.listHandles = new System.Windows.Forms.ListView();
this.columnType = new System.Windows.Forms.ColumnHeader();
this.columnName = new System.Windows.Forms.ColumnHeader();
this.columnHandle = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// listHandles
//
this.listHandles.AllowColumnReorder = true;
this.listHandles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnType,
this.columnName,
this.columnHandle});
this.listHandles.Dock = System.Windows.Forms.DockStyle.Fill;
this.listHandles.FullRowSelect = true;
this.listHandles.HideSelection = false;
this.listHandles.Location = new System.Drawing.Point(0, 0);
this.listHandles.Name = "listHandles";
this.listHandles.ShowItemToolTips = true;
this.listHandles.Size = new System.Drawing.Size(450, 472);
this.listHandles.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listHandles.TabIndex = 3;
this.listHandles.UseCompatibleStateImageBehavior = false;
this.listHandles.View = System.Windows.Forms.View.Details;
//
// columnType
//
this.columnType.Text = "Type";
this.columnType.Width = 100;
//
// columnName
//
this.columnName.Text = "Name";
this.columnName.Width = 250;
//
// columnHandle
//
this.columnHandle.Text = "Handle";
//
// HandleList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.listHandles);
this.DoubleBuffered = true;
this.Name = "HandleList";
this.Size = new System.Drawing.Size(450, 472);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listHandles;
private System.Windows.Forms.ColumnHeader columnType;
private System.Windows.Forms.ColumnHeader columnName;
private System.Windows.Forms.ColumnHeader columnHandle;
}
}