Files
mirror-processhacker/trunk/ProcessHacker/Forms/ProcessWindow.Designer.cs
T
wj32 902c3170c2 Token information window is much more detailed
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@400 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2008-12-24 03:08:26 +00:00

149 lines
6.7 KiB
C#

namespace ProcessHacker
{
partial class ProcessWindow
{
/// <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();
}
Program.PWindows.Remove(_processItem.PID);
Program.UpdateWindows();
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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProcessWindow));
this.mainMenu = new System.Windows.Forms.MainMenu(this.components);
this.processMenuItem = new System.Windows.Forms.MenuItem();
this.inspectImageFileMenuItem = new System.Windows.Forms.MenuItem();
this.windowMenuItem = new System.Windows.Forms.MenuItem();
this.tabControl = new System.Windows.Forms.TabControl();
this.tabToken = new System.Windows.Forms.TabPage();
this.imageList = new System.Windows.Forms.ImageList(this.components);
this.tabGeneral = new System.Windows.Forms.TabPage();
this.vistaMenu = new wyDay.Controls.VistaMenu(this.components);
this.tabControl.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.vistaMenu)).BeginInit();
this.SuspendLayout();
//
// mainMenu
//
this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.processMenuItem,
this.windowMenuItem});
//
// processMenuItem
//
this.processMenuItem.Index = 0;
this.processMenuItem.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.inspectImageFileMenuItem});
this.processMenuItem.Text = "&Process";
//
// inspectImageFileMenuItem
//
this.vistaMenu.SetImage(this.inspectImageFileMenuItem, global::ProcessHacker.Properties.Resources.application_form_magnify);
this.inspectImageFileMenuItem.Index = 0;
this.inspectImageFileMenuItem.Text = "&Inspect Image File...";
this.inspectImageFileMenuItem.Click += new System.EventHandler(this.inspectImageFileMenuItem_Click);
//
// windowMenuItem
//
this.windowMenuItem.Index = 1;
this.windowMenuItem.Text = "&Window";
//
// tabControl
//
this.tabControl.Controls.Add(this.tabGeneral);
this.tabControl.Controls.Add(this.tabToken);
this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl.ImageList = this.imageList;
this.tabControl.Location = new System.Drawing.Point(0, 0);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(763, 416);
this.tabControl.TabIndex = 0;
//
// tabToken
//
this.tabToken.ImageKey = "token";
this.tabToken.Location = new System.Drawing.Point(4, 23);
this.tabToken.Name = "tabToken";
this.tabToken.Padding = new System.Windows.Forms.Padding(3);
this.tabToken.Size = new System.Drawing.Size(755, 256);
this.tabToken.TabIndex = 1;
this.tabToken.Text = "Token";
this.tabToken.UseVisualStyleBackColor = true;
//
// imageList
//
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
this.imageList.Images.SetKeyName(0, "token");
this.imageList.Images.SetKeyName(1, "application");
//
// tabGeneral
//
this.tabGeneral.ImageKey = "application";
this.tabGeneral.Location = new System.Drawing.Point(4, 23);
this.tabGeneral.Name = "tabGeneral";
this.tabGeneral.Size = new System.Drawing.Size(755, 389);
this.tabGeneral.TabIndex = 2;
this.tabGeneral.Text = "General";
this.tabGeneral.UseVisualStyleBackColor = true;
//
// vistaMenu
//
this.vistaMenu.ContainerControl = this;
//
// ProcessWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(763, 416);
this.Controls.Add(this.tabControl);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Menu = this.mainMenu;
this.Name = "ProcessWindow";
this.Text = "Process";
this.Load += new System.EventHandler(this.ProcessWindow_Load);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ProcessWindow_FormClosing);
this.tabControl.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.vistaMenu)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MainMenu mainMenu;
private wyDay.Controls.VistaMenu vistaMenu;
private System.Windows.Forms.MenuItem processMenuItem;
private System.Windows.Forms.MenuItem windowMenuItem;
private System.Windows.Forms.MenuItem inspectImageFileMenuItem;
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage tabToken;
private System.Windows.Forms.ImageList imageList;
private System.Windows.Forms.TabPage tabGeneral;
}
}