Files
mirror-processhacker/trunk/ProcessHacker/Forms/ChooseColumnsWindow.Designer.cs
T
wj32 8eaf338814 customizable columns!
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@782 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-02-28 23:33:33 +00:00

114 lines
5.2 KiB
C#

namespace ProcessHacker
{
partial class ChooseColumnsWindow
{
/// <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.listColumns = new System.Windows.Forms.ListView();
this.columnColumn = new System.Windows.Forms.ColumnHeader();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// listColumns
//
this.listColumns.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.listColumns.CheckBoxes = true;
this.listColumns.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnColumn});
this.listColumns.FullRowSelect = true;
this.listColumns.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.listColumns.Location = new System.Drawing.Point(12, 12);
this.listColumns.MultiSelect = false;
this.listColumns.Name = "listColumns";
this.listColumns.ShowItemToolTips = true;
this.listColumns.Size = new System.Drawing.Size(368, 261);
this.listColumns.TabIndex = 0;
this.listColumns.UseCompatibleStateImageBehavior = false;
this.listColumns.View = System.Windows.Forms.View.Details;
//
// columnColumn
//
this.columnColumn.Text = "Column";
this.columnColumn.Width = 200;
//
// 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(305, 279);
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.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.buttonOK.Location = new System.Drawing.Point(224, 279);
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);
//
// ChooseColumnsWindow
//
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(392, 314);
this.Controls.Add(this.buttonOK);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.listColumns);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ChooseColumnsWindow";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Choose Columns";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listColumns;
private System.Windows.Forms.ColumnHeader columnColumn;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Button buttonOK;
}
}