Files
mirror-processhacker/1.x/trunk/ProcessHacker/Forms/Ui/HandlePropertiesWindow.Designer.cs
T
dmex 2ed70488fc PH 1.x: fixed TokenHandle exception, fixed OptionsWindow threading bug, fixed crash for systems without Segoe UI
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4948 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2012-01-04 07:24:24 +00:00

112 lines
4.9 KiB
C#

namespace ProcessHacker.Native.Ui
{
partial class HandlePropertiesWindow
{
/// <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.tabControl = new System.Windows.Forms.TabControl();
this.tabDetails = new System.Windows.Forms.TabPage();
this.handleDetails1 = new ProcessHacker.Components.HandleDetails();
this.buttonClose = new System.Windows.Forms.Button();
this.tabControl.SuspendLayout();
this.tabDetails.SuspendLayout();
this.SuspendLayout();
//
// 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.tabDetails);
this.tabControl.Location = new System.Drawing.Point(12, 12);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(370, 382);
this.tabControl.TabIndex = 0;
//
// tabDetails
//
this.tabDetails.Controls.Add(this.handleDetails1);
this.tabDetails.Location = new System.Drawing.Point(4, 22);
this.tabDetails.Name = "tabDetails";
this.tabDetails.Padding = new System.Windows.Forms.Padding(3);
this.tabDetails.Size = new System.Drawing.Size(362, 356);
this.tabDetails.TabIndex = 0;
this.tabDetails.Text = "Details";
this.tabDetails.UseVisualStyleBackColor = true;
//
// handleDetails1
//
this.handleDetails1.BackColor = System.Drawing.Color.White;
this.handleDetails1.Dock = System.Windows.Forms.DockStyle.Fill;
this.handleDetails1.Location = new System.Drawing.Point(3, 3);
this.handleDetails1.Name = "handleDetails1";
this.handleDetails1.Padding = new System.Windows.Forms.Padding(3);
this.handleDetails1.Size = new System.Drawing.Size(356, 350);
this.handleDetails1.TabIndex = 0;
//
// 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(307, 400);
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);
//
// HandlePropertiesWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(394, 435);
this.Controls.Add(this.buttonClose);
this.Controls.Add(this.tabControl);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "HandlePropertiesWindow";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Handle Properties";
this.tabControl.ResumeLayout(false);
this.tabDetails.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage tabDetails;
private System.Windows.Forms.Button buttonClose;
public Components.HandleDetails handleDetails1;
}
}