Files
mirror-processhacker/1.x/trunk/ProcessHacker/Components/HandleList.Designer.cs
T
dmex e43aec1c5e PH1.x: Code Cleanup/Fixes
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4778 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2011-10-29 08:32:37 +00:00

155 lines
6.6 KiB
C#

namespace ProcessHacker.Components
{
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();
}
_highlightingContext.Dispose();
this.Provider = null;
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 ProcessHacker.Components.ExtendedListView();
this.columnType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHandle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.closeHandleMenuItem = new System.Windows.Forms.MenuItem();
this.copyHandleMenuItem = new System.Windows.Forms.MenuItem();
this.menuHandle = new System.Windows.Forms.ContextMenu();
this.protectedMenuItem = new System.Windows.Forms.MenuItem();
this.inheritMenuItem = new System.Windows.Forms.MenuItem();
this.menuItem11 = new System.Windows.Forms.MenuItem();
this.propertiesHandleMenuItem = new System.Windows.Forms.MenuItem();
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.DoubleClickChecks = true;
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";
//
// closeHandleMenuItem
//
this.closeHandleMenuItem.Index = 0;
this.closeHandleMenuItem.Text = "Close";
this.closeHandleMenuItem.Click += new System.EventHandler(this.closeHandleMenuItem_Click);
//
// copyHandleMenuItem
//
this.copyHandleMenuItem.Index = 4;
this.copyHandleMenuItem.Text = "&Copy";
//
// menuHandle
//
this.menuHandle.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.closeHandleMenuItem,
this.protectedMenuItem,
this.inheritMenuItem,
this.menuItem11,
this.copyHandleMenuItem,
this.propertiesHandleMenuItem});
this.menuHandle.Popup += new System.EventHandler(this.menuHandle_Popup);
//
// protectedMenuItem
//
this.protectedMenuItem.Index = 1;
this.protectedMenuItem.Text = "Protected";
this.protectedMenuItem.Click += new System.EventHandler(this.protectedMenuItem_Click);
//
// inheritMenuItem
//
this.inheritMenuItem.Index = 2;
this.inheritMenuItem.Text = "Inherit";
this.inheritMenuItem.Click += new System.EventHandler(this.inheritMenuItem_Click);
//
// menuItem11
//
this.menuItem11.Index = 3;
this.menuItem11.Text = "-";
//
// propertiesHandleMenuItem
//
this.propertiesHandleMenuItem.Index = 5;
this.propertiesHandleMenuItem.Text = "&Properties";
this.propertiesHandleMenuItem.Click += new System.EventHandler(this.propertiesHandleMenuItem_Click);
//
// HandleList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.WhiteSmoke;
this.Controls.Add(this.listHandles);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "HandleList";
this.Size = new System.Drawing.Size(450, 472);
this.ResumeLayout(false);
}
#endregion
private ExtendedListView listHandles;
private System.Windows.Forms.ColumnHeader columnType;
private System.Windows.Forms.ColumnHeader columnName;
private System.Windows.Forms.ColumnHeader columnHandle;
private System.Windows.Forms.ContextMenu menuHandle;
private System.Windows.Forms.MenuItem closeHandleMenuItem;
private System.Windows.Forms.MenuItem copyHandleMenuItem;
private System.Windows.Forms.MenuItem menuItem11;
private System.Windows.Forms.MenuItem propertiesHandleMenuItem;
private System.Windows.Forms.MenuItem protectedMenuItem;
private System.Windows.Forms.MenuItem inheritMenuItem;
}
}