Files
mirror-processhacker/trunk/ProcessHacker/Forms/TokenWindow.Designer.cs
T
wj32 5beff32478 * added MemoryAlloc class - for managing global-alloc'ed memory
* addded LSAHandle, LSAPolicyHandle
* addded ServiceBaseHandle, ServiceManagerHandle
* revised all Win32 code to use MemoryAlloc class
* revised Win32 function imports to be more natural when used (ref -> out, int -> bool)
* moved session ID display from Process tab on HackerWindow.cs to TokenWindow.cs


git-svn-id: svn://svn.code.sf.net/p/processhacker/code@332 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2008-12-19 05:47:47 +00:00

327 lines
15 KiB
C#

namespace ProcessHacker
{
partial class TokenWindow
{
/// <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.components = new System.ComponentModel.Container();
this.listPrivileges = new System.Windows.Forms.ListView();
this.columnName = new System.Windows.Forms.ColumnHeader();
this.columnStatus = new System.Windows.Forms.ColumnHeader();
this.columnDesc = new System.Windows.Forms.ColumnHeader();
this.buttonClose = new System.Windows.Forms.Button();
this.menuPrivileges = new System.Windows.Forms.ContextMenu();
this.enableMenuItem = new System.Windows.Forms.MenuItem();
this.disableMenuItem = new System.Windows.Forms.MenuItem();
this.removeMenuItem = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.copyMenuItem = new System.Windows.Forms.MenuItem();
this.selectAllMenuItem = new System.Windows.Forms.MenuItem();
this.tabControl = new System.Windows.Forms.TabControl();
this.tabToken = new System.Windows.Forms.TabPage();
this.label1 = new System.Windows.Forms.Label();
this.textUser = new System.Windows.Forms.TextBox();
this.tabGroups = new System.Windows.Forms.TabPage();
this.listGroups = new System.Windows.Forms.ListView();
this.columnGroupName = new System.Windows.Forms.ColumnHeader();
this.columnFlags = new System.Windows.Forms.ColumnHeader();
this.tabPrivileges = new System.Windows.Forms.TabPage();
this.vistaMenu = new wyDay.Controls.VistaMenu(this.components);
this.label2 = new System.Windows.Forms.Label();
this.textSessionID = new System.Windows.Forms.TextBox();
this.tabControl.SuspendLayout();
this.tabToken.SuspendLayout();
this.tabGroups.SuspendLayout();
this.tabPrivileges.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.vistaMenu)).BeginInit();
this.SuspendLayout();
//
// listPrivileges
//
this.listPrivileges.AllowColumnReorder = true;
this.listPrivileges.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnName,
this.columnStatus,
this.columnDesc});
this.listPrivileges.Dock = System.Windows.Forms.DockStyle.Fill;
this.listPrivileges.FullRowSelect = true;
this.listPrivileges.Location = new System.Drawing.Point(3, 3);
this.listPrivileges.Name = "listPrivileges";
this.listPrivileges.ShowItemToolTips = true;
this.listPrivileges.Size = new System.Drawing.Size(427, 347);
this.listPrivileges.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listPrivileges.TabIndex = 0;
this.listPrivileges.UseCompatibleStateImageBehavior = false;
this.listPrivileges.View = System.Windows.Forms.View.Details;
//
// columnName
//
this.columnName.Text = "Name";
this.columnName.Width = 100;
//
// columnStatus
//
this.columnStatus.Text = "Status";
this.columnStatus.Width = 120;
//
// columnDesc
//
this.columnDesc.Text = "Description";
this.columnDesc.Width = 190;
//
// 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(378, 397);
this.buttonClose.Name = "buttonClose";
this.buttonClose.Size = new System.Drawing.Size(75, 23);
this.buttonClose.TabIndex = 1;
this.buttonClose.Text = "&Close";
this.buttonClose.UseVisualStyleBackColor = true;
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
//
// menuPrivileges
//
this.menuPrivileges.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.enableMenuItem,
this.disableMenuItem,
this.removeMenuItem,
this.menuItem2,
this.copyMenuItem,
this.selectAllMenuItem});
this.menuPrivileges.Popup += new System.EventHandler(this.menuPrivileges_Popup);
//
// enableMenuItem
//
this.vistaMenu.SetImage(this.enableMenuItem, global::ProcessHacker.Properties.Resources.tick);
this.enableMenuItem.Index = 0;
this.enableMenuItem.Text = "&Enable";
this.enableMenuItem.Click += new System.EventHandler(this.enableMenuItem_Click);
//
// disableMenuItem
//
this.vistaMenu.SetImage(this.disableMenuItem, global::ProcessHacker.Properties.Resources.cross);
this.disableMenuItem.Index = 1;
this.disableMenuItem.Text = "&Disable";
this.disableMenuItem.Click += new System.EventHandler(this.disableMenuItem_Click);
//
// removeMenuItem
//
this.vistaMenu.SetImage(this.removeMenuItem, global::ProcessHacker.Properties.Resources.delete);
this.removeMenuItem.Index = 2;
this.removeMenuItem.Text = "&Remove";
this.removeMenuItem.Click += new System.EventHandler(this.removeMenuItem_Click);
//
// menuItem2
//
this.menuItem2.Index = 3;
this.menuItem2.Text = "-";
//
// copyMenuItem
//
this.vistaMenu.SetImage(this.copyMenuItem, global::ProcessHacker.Properties.Resources.page_copy);
this.copyMenuItem.Index = 4;
this.copyMenuItem.Text = "&Copy";
//
// selectAllMenuItem
//
this.selectAllMenuItem.Index = 5;
this.selectAllMenuItem.Text = "Select &All";
this.selectAllMenuItem.Click += new System.EventHandler(this.selectAllMenuItem_Click);
//
// tabControl
//
this.tabControl.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.tabControl.Controls.Add(this.tabToken);
this.tabControl.Controls.Add(this.tabGroups);
this.tabControl.Controls.Add(this.tabPrivileges);
this.tabControl.Location = new System.Drawing.Point(12, 12);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(441, 379);
this.tabControl.TabIndex = 2;
//
// tabToken
//
this.tabToken.Controls.Add(this.textSessionID);
this.tabToken.Controls.Add(this.label2);
this.tabToken.Controls.Add(this.label1);
this.tabToken.Controls.Add(this.textUser);
this.tabToken.Location = new System.Drawing.Point(4, 22);
this.tabToken.Name = "tabToken";
this.tabToken.Padding = new System.Windows.Forms.Padding(3, 5, 3, 3);
this.tabToken.Size = new System.Drawing.Size(433, 353);
this.tabToken.TabIndex = 2;
this.tabToken.Text = "Token";
this.tabToken.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 11);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(32, 13);
this.label1.TabIndex = 2;
this.label1.Text = "User:";
//
// textUser
//
this.textUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textUser.Location = new System.Drawing.Point(44, 8);
this.textUser.Name = "textUser";
this.textUser.ReadOnly = true;
this.textUser.Size = new System.Drawing.Size(383, 20);
this.textUser.TabIndex = 1;
//
// tabGroups
//
this.tabGroups.Controls.Add(this.listGroups);
this.tabGroups.Location = new System.Drawing.Point(4, 22);
this.tabGroups.Name = "tabGroups";
this.tabGroups.Padding = new System.Windows.Forms.Padding(3);
this.tabGroups.Size = new System.Drawing.Size(433, 353);
this.tabGroups.TabIndex = 1;
this.tabGroups.Text = "Groups";
this.tabGroups.UseVisualStyleBackColor = true;
//
// 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(3, 3);
this.listGroups.Name = "listGroups";
this.listGroups.ShowItemToolTips = true;
this.listGroups.Size = new System.Drawing.Size(427, 347);
this.listGroups.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listGroups.TabIndex = 3;
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;
//
// tabPrivileges
//
this.tabPrivileges.Controls.Add(this.listPrivileges);
this.tabPrivileges.Location = new System.Drawing.Point(4, 22);
this.tabPrivileges.Name = "tabPrivileges";
this.tabPrivileges.Padding = new System.Windows.Forms.Padding(3);
this.tabPrivileges.Size = new System.Drawing.Size(433, 353);
this.tabPrivileges.TabIndex = 0;
this.tabPrivileges.Text = "Privileges";
this.tabPrivileges.UseVisualStyleBackColor = true;
//
// vistaMenu
//
this.vistaMenu.ContainerControl = this;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 37);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(61, 13);
this.label2.TabIndex = 3;
this.label2.Text = "Session ID:";
//
// textSessionID
//
this.textSessionID.Location = new System.Drawing.Point(73, 34);
this.textSessionID.Name = "textSessionID";
this.textSessionID.ReadOnly = true;
this.textSessionID.Size = new System.Drawing.Size(109, 20);
this.textSessionID.TabIndex = 4;
//
// TokenWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(465, 432);
this.Controls.Add(this.tabControl);
this.Controls.Add(this.buttonClose);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "TokenWindow";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Token";
this.Load += new System.EventHandler(this.TokenWindow_Load);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TokenWindow_FormClosing);
this.tabControl.ResumeLayout(false);
this.tabToken.ResumeLayout(false);
this.tabToken.PerformLayout();
this.tabGroups.ResumeLayout(false);
this.tabPrivileges.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.vistaMenu)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listPrivileges;
private System.Windows.Forms.Button buttonClose;
private System.Windows.Forms.ColumnHeader columnName;
private System.Windows.Forms.ColumnHeader columnStatus;
private System.Windows.Forms.ColumnHeader columnDesc;
private System.Windows.Forms.ContextMenu menuPrivileges;
private System.Windows.Forms.MenuItem copyMenuItem;
private System.Windows.Forms.MenuItem enableMenuItem;
private System.Windows.Forms.MenuItem disableMenuItem;
private System.Windows.Forms.MenuItem removeMenuItem;
private wyDay.Controls.VistaMenu vistaMenu;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.MenuItem selectAllMenuItem;
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage tabToken;
private System.Windows.Forms.TabPage tabGroups;
private System.Windows.Forms.TabPage tabPrivileges;
private System.Windows.Forms.ListView listGroups;
private System.Windows.Forms.ColumnHeader columnGroupName;
private System.Windows.Forms.ColumnHeader columnFlags;
private System.Windows.Forms.TextBox textUser;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textSessionID;
private System.Windows.Forms.Label label2;
}
}