namespace ProcessHacker.Native.Ui { partial class ChooseProcessDialog { /// /// 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.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChooseProcessDialog)); this.listProcesses = new System.Windows.Forms.ListView(); this.columnName = new System.Windows.Forms.ColumnHeader(); this.columnPID = new System.Windows.Forms.ColumnHeader(); this.columnUsername = new System.Windows.Forms.ColumnHeader(); this.imageList = new System.Windows.Forms.ImageList(this.components); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonOK = new System.Windows.Forms.Button(); this.buttonRefresh = new System.Windows.Forms.Button(); this.SuspendLayout(); // // listProcesses // this.listProcesses.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.listProcesses.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnName, this.columnPID, this.columnUsername}); this.listProcesses.FullRowSelect = true; this.listProcesses.HideSelection = false; this.listProcesses.Location = new System.Drawing.Point(12, 12); this.listProcesses.MultiSelect = false; this.listProcesses.Name = "listProcesses"; this.listProcesses.Size = new System.Drawing.Size(451, 350); this.listProcesses.SmallImageList = this.imageList; this.listProcesses.TabIndex = 0; this.listProcesses.UseCompatibleStateImageBehavior = false; this.listProcesses.View = System.Windows.Forms.View.Details; this.listProcesses.SelectedIndexChanged += new System.EventHandler(this.listProcesses_SelectedIndexChanged); this.listProcesses.DoubleClick += new System.EventHandler(this.listProcesses_DoubleClick); // // columnName // this.columnName.Text = "Name"; this.columnName.Width = 200; // // columnPID // this.columnPID.Text = "PID"; // // columnUsername // this.columnUsername.Text = "Username"; this.columnUsername.Width = 150; // // imageList // this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream"))); this.imageList.TransparentColor = System.Drawing.Color.Transparent; this.imageList.Images.SetKeyName(0, "generic_process"); // // 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(388, 368); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 1; 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(307, 368); 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); // // buttonRefresh // this.buttonRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.buttonRefresh.FlatStyle = System.Windows.Forms.FlatStyle.System; this.buttonRefresh.Location = new System.Drawing.Point(12, 368); this.buttonRefresh.Name = "buttonRefresh"; this.buttonRefresh.Size = new System.Drawing.Size(75, 23); this.buttonRefresh.TabIndex = 3; this.buttonRefresh.Text = "Refresh"; this.buttonRefresh.UseVisualStyleBackColor = true; this.buttonRefresh.Click += new System.EventHandler(this.buttonRefresh_Click); // // ChooseProcessDialog // 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(475, 403); this.Controls.Add(this.buttonRefresh); this.Controls.Add(this.buttonOK); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.listProcesses); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ChooseProcessDialog"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Choose Process"; this.Load += new System.EventHandler(this.ChooseProcessDialog_Load); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListView listProcesses; private System.Windows.Forms.Button buttonCancel; private System.Windows.Forms.Button buttonOK; private System.Windows.Forms.Button buttonRefresh; private System.Windows.Forms.ColumnHeader columnName; private System.Windows.Forms.ColumnHeader columnPID; private System.Windows.Forms.ColumnHeader columnUsername; private System.Windows.Forms.ImageList imageList; } }