Files
dmex b02427417c PH1.x: fixed build
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2014-02-25 23:14:38 +00:00

132 lines
5.4 KiB
C#

namespace ProcessHacker.Components
{
partial class ServiceList
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServiceList));
this.listServices = new System.Windows.Forms.ListView();
this.columnName = new System.Windows.Forms.ColumnHeader();
this.columnDescription = new System.Windows.Forms.ColumnHeader();
this.columnType = new System.Windows.Forms.ColumnHeader();
this.columnStatus = new System.Windows.Forms.ColumnHeader();
this.columnStartType = new System.Windows.Forms.ColumnHeader();
this.columnPID = new System.Windows.Forms.ColumnHeader();
this.imageList = new System.Windows.Forms.ImageList(this.components);
this.SuspendLayout();
//
// listServices
//
this.listServices.AllowColumnReorder = true;
this.listServices.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnName,
this.columnDescription,
this.columnType,
this.columnStatus,
this.columnStartType,
this.columnPID});
this.listServices.Dock = System.Windows.Forms.DockStyle.Fill;
this.listServices.FullRowSelect = true;
this.listServices.HideSelection = false;
this.listServices.Location = new System.Drawing.Point(0, 0);
this.listServices.Name = "listServices";
this.listServices.ShowItemToolTips = true;
this.listServices.Size = new System.Drawing.Size(685, 472);
this.listServices.SmallImageList = this.imageList;
this.listServices.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listServices.TabIndex = 1;
this.listServices.UseCompatibleStateImageBehavior = false;
this.listServices.View = System.Windows.Forms.View.Details;
//
// columnName
//
this.columnName.Text = "Name";
this.columnName.Width = 150;
//
// columnDescription
//
this.columnDescription.Text = "Description";
this.columnDescription.Width = 260;
//
// columnType
//
this.columnType.Text = "Type";
this.columnType.Width = 120;
//
// columnStatus
//
this.columnStatus.Text = "Status";
this.columnStatus.Width = 80;
//
// columnStartType
//
this.columnStartType.Text = "Start Type";
this.columnStartType.Width = 80;
//
// columnPID
//
this.columnPID.Text = "PID";
//
// imageList
//
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
this.imageList.Images.SetKeyName(0, "Win32");
this.imageList.Images.SetKeyName(1, "Driver");
this.imageList.Images.SetKeyName(2, "Interactive");
this.imageList.Images.SetKeyName(3, "FS");
//
// ServiceList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.listServices);
this.DoubleBuffered = true;
this.Name = "ServiceList";
this.Size = new System.Drawing.Size(685, 472);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listServices;
private System.Windows.Forms.ColumnHeader columnName;
private System.Windows.Forms.ImageList imageList;
private System.Windows.Forms.ColumnHeader columnDescription;
private System.Windows.Forms.ColumnHeader columnStatus;
private System.Windows.Forms.ColumnHeader columnPID;
private System.Windows.Forms.ColumnHeader columnType;
private System.Windows.Forms.ColumnHeader columnStartType;
}
}