mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
aabd8ab7ce
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1064 21ef857c-d57f-4fe0-8362-d861dc6d29cd
81 lines
3.0 KiB
C#
81 lines
3.0 KiB
C#
namespace ProcessHacker.Components
|
|
{
|
|
partial class TokenGroups
|
|
{
|
|
/// <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.listGroups = new System.Windows.Forms.ListView();
|
|
this.columnGroupName = new System.Windows.Forms.ColumnHeader();
|
|
this.columnFlags = new System.Windows.Forms.ColumnHeader();
|
|
this.SuspendLayout();
|
|
//
|
|
// listGroups
|
|
//
|
|
this.listGroups.AllowColumnReorder = true;
|
|
this.listGroups.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnGroupName,
|
|
this.columnFlags});
|
|
this.listGroups.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listGroups.FullRowSelect = true;
|
|
this.listGroups.Location = new System.Drawing.Point(0, 0);
|
|
this.listGroups.Name = "listGroups";
|
|
this.listGroups.ShowItemToolTips = true;
|
|
this.listGroups.Size = new System.Drawing.Size(431, 397);
|
|
this.listGroups.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
this.listGroups.TabIndex = 4;
|
|
this.listGroups.UseCompatibleStateImageBehavior = false;
|
|
this.listGroups.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnGroupName
|
|
//
|
|
this.columnGroupName.Text = "Name";
|
|
this.columnGroupName.Width = 200;
|
|
//
|
|
// columnFlags
|
|
//
|
|
this.columnFlags.Text = "Flags";
|
|
this.columnFlags.Width = 180;
|
|
//
|
|
// TokenGroups
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.listGroups);
|
|
this.Name = "TokenGroups";
|
|
this.Size = new System.Drawing.Size(431, 397);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listGroups;
|
|
private System.Windows.Forms.ColumnHeader columnGroupName;
|
|
private System.Windows.Forms.ColumnHeader columnFlags;
|
|
}
|
|
}
|