namespace ProcessHacker { partial class ProcessPickerWindow { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.buttonCancel = new System.Windows.Forms.Button(); this.buttonOK = new System.Windows.Forms.Button(); this.treeProcesses = new ProcessHacker.ProcessTree(); this.labelLabel = new System.Windows.Forms.Label(); this.SuspendLayout(); // // buttonCancel // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.FlatStyle = System.Windows.Forms.FlatStyle.System; this.buttonCancel.Location = new System.Drawing.Point(398, 357); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 3; this.buttonCancel.Text = "&Cancel"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // buttonOK // this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonOK.Enabled = false; this.buttonOK.FlatStyle = System.Windows.Forms.FlatStyle.System; this.buttonOK.Location = new System.Drawing.Point(317, 357); this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(75, 23); this.buttonOK.TabIndex = 2; this.buttonOK.Text = "&OK"; this.buttonOK.UseVisualStyleBackColor = true; this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); // // treeProcesses // this.treeProcesses.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.treeProcesses.Draw = true; this.treeProcesses.Location = new System.Drawing.Point(12, 28); this.treeProcesses.Name = "treeProcesses"; this.treeProcesses.Provider = null; this.treeProcesses.Size = new System.Drawing.Size(461, 323); this.treeProcesses.TabIndex = 1; this.treeProcesses.DoubleClick += new System.EventHandler(this.treeProcesses_DoubleClick); this.treeProcesses.SelectionChanged += new System.EventHandler(this.treeProcesses_SelectionChanged); // // labelLabel // this.labelLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.labelLabel.AutoEllipsis = true; this.labelLabel.Location = new System.Drawing.Point(12, 9); this.labelLabel.Name = "labelLabel"; this.labelLabel.Size = new System.Drawing.Size(461, 16); this.labelLabel.TabIndex = 0; this.labelLabel.Text = "Select a process:"; // // ProcessPickerWindow // this.AcceptButton = this.buttonOK; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(485, 392); this.Controls.Add(this.labelLabel); this.Controls.Add(this.treeProcesses); this.Controls.Add(this.buttonOK); this.Controls.Add(this.buttonCancel); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ProcessPickerWindow"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Choose a Process"; this.Load += new System.EventHandler(this.ProcessPickerWindow_Load); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ProcessPickerWindow_FormClosing); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button buttonCancel; private System.Windows.Forms.Button buttonOK; private ProcessTree treeProcesses; private System.Windows.Forms.Label labelLabel; } }