mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
8df5e30472
completely rewrote thread list code git-svn-id: svn://svn.code.sf.net/p/processhacker/code@38 21ef857c-d57f-4fe0-8362-d861dc6d29cd
73 lines
2.8 KiB
C#
73 lines
2.8 KiB
C#
namespace ProcessHacker
|
|
{
|
|
partial class ProcessTree
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProcessTree));
|
|
this.treeView = new System.Windows.Forms.TreeView();
|
|
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// treeView
|
|
//
|
|
this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.treeView.FullRowSelect = true;
|
|
this.treeView.ImageKey = "Generic";
|
|
this.treeView.ImageList = this.imageList;
|
|
this.treeView.Location = new System.Drawing.Point(0, 0);
|
|
this.treeView.Name = "treeView";
|
|
this.treeView.SelectedImageIndex = 0;
|
|
this.treeView.ShowNodeToolTips = true;
|
|
this.treeView.Size = new System.Drawing.Size(419, 383);
|
|
this.treeView.TabIndex = 0;
|
|
//
|
|
// imageList
|
|
//
|
|
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
|
|
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
this.imageList.Images.SetKeyName(0, "Generic");
|
|
//
|
|
// ProcessTree
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.treeView);
|
|
this.Name = "ProcessTree";
|
|
this.Size = new System.Drawing.Size(419, 383);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TreeView treeView;
|
|
private System.Windows.Forms.ImageList imageList;
|
|
}
|
|
}
|