mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
cc1d1c1ac3
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@57 21ef857c-d57f-4fe0-8362-d861dc6d29cd
104 lines
4.5 KiB
C#
104 lines
4.5 KiB
C#
namespace ProcessHacker
|
|
{
|
|
partial class ProcessGroups
|
|
{
|
|
/// <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()
|
|
{
|
|
this.buttonClose = new System.Windows.Forms.Button();
|
|
this.listGroups = new System.Windows.Forms.ListView();
|
|
this.columnName = new System.Windows.Forms.ColumnHeader();
|
|
this.columnFlags = new System.Windows.Forms.ColumnHeader();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonClose
|
|
//
|
|
this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonClose.Location = new System.Drawing.Point(374, 397);
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonClose.TabIndex = 3;
|
|
this.buttonClose.Text = "&Close";
|
|
this.buttonClose.UseVisualStyleBackColor = true;
|
|
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
|
|
//
|
|
// listGroups
|
|
//
|
|
this.listGroups.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.listGroups.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnName,
|
|
this.columnFlags});
|
|
this.listGroups.FullRowSelect = true;
|
|
this.listGroups.Location = new System.Drawing.Point(12, 12);
|
|
this.listGroups.Name = "listGroups";
|
|
this.listGroups.ShowItemToolTips = true;
|
|
this.listGroups.Size = new System.Drawing.Size(437, 379);
|
|
this.listGroups.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
this.listGroups.TabIndex = 2;
|
|
this.listGroups.UseCompatibleStateImageBehavior = false;
|
|
this.listGroups.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnName
|
|
//
|
|
this.columnName.Text = "Name";
|
|
this.columnName.Width = 200;
|
|
//
|
|
// columnFlags
|
|
//
|
|
this.columnFlags.Text = "Flags";
|
|
this.columnFlags.Width = 140;
|
|
//
|
|
// ProcessGroups
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(461, 432);
|
|
this.Controls.Add(this.buttonClose);
|
|
this.Controls.Add(this.listGroups);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "ProcessGroups";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Groups";
|
|
this.Load += new System.EventHandler(this.ProcessGroups_Load);
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ProcessGroups_FormClosing);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonClose;
|
|
private System.Windows.Forms.ListView listGroups;
|
|
private System.Windows.Forms.ColumnHeader columnName;
|
|
private System.Windows.Forms.ColumnHeader columnFlags;
|
|
}
|
|
} |