Files
VSMRUManager/Form1.Designer.cs
2014-07-05 15:41:04 +00:00

150 lines
6.0 KiB
C#

namespace VSMRUManager
{
partial class Form1
{
/// <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.cbVSVersion = new System.Windows.Forms.ComboBox();
this.lvList = new System.Windows.Forms.ListView();
this.num = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.name = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.path = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.btDelAll = new System.Windows.Forms.Button();
this.btDelSel = new System.Windows.Forms.Button();
this.btClear = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// cbVSVersion
//
this.cbVSVersion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbVSVersion.Font = new System.Drawing.Font("Malgun Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.cbVSVersion.FormattingEnabled = true;
this.cbVSVersion.Location = new System.Drawing.Point(12, 12);
this.cbVSVersion.Name = "cbVSVersion";
this.cbVSVersion.Size = new System.Drawing.Size(188, 28);
this.cbVSVersion.TabIndex = 0;
this.cbVSVersion.SelectedIndexChanged += new System.EventHandler(this.cbVSVersion_SelectedIndexChanged);
//
// lvList
//
this.lvList.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.lvList.AutoArrange = false;
this.lvList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.num,
this.name,
this.path});
this.lvList.FullRowSelect = true;
this.lvList.GridLines = true;
this.lvList.Location = new System.Drawing.Point(12, 59);
this.lvList.Name = "lvList";
this.lvList.Size = new System.Drawing.Size(500, 310);
this.lvList.TabIndex = 1;
this.lvList.UseCompatibleStateImageBehavior = false;
this.lvList.View = System.Windows.Forms.View.Details;
//
// num
//
this.num.Text = "No";
this.num.Width = 40;
//
// name
//
this.name.Text = "File";
//
// path
//
this.path.Text = "Path";
this.path.Width = 396;
//
// btDelAll
//
this.btDelAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btDelAll.Font = new System.Drawing.Font("Malgun Gothic", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.btDelAll.Location = new System.Drawing.Point(431, 23);
this.btDelAll.Name = "btDelAll";
this.btDelAll.Size = new System.Drawing.Size(81, 30);
this.btDelAll.TabIndex = 2;
this.btDelAll.Text = "delete all";
this.btDelAll.UseVisualStyleBackColor = true;
this.btDelAll.Click += new System.EventHandler(this.btDelAll_Click);
//
// btDelSel
//
this.btDelSel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btDelSel.Font = new System.Drawing.Font("Malgun Gothic", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.btDelSel.Location = new System.Drawing.Point(344, 23);
this.btDelSel.Name = "btDelSel";
this.btDelSel.Size = new System.Drawing.Size(81, 30);
this.btDelSel.TabIndex = 3;
this.btDelSel.Text = "delete";
this.btDelSel.UseVisualStyleBackColor = true;
this.btDelSel.Click += new System.EventHandler(this.btDelSel_Click);
//
// btClear
//
this.btClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btClear.Font = new System.Drawing.Font("Malgun Gothic", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
this.btClear.Location = new System.Drawing.Point(257, 23);
this.btClear.Name = "btClear";
this.btClear.Size = new System.Drawing.Size(81, 30);
this.btClear.TabIndex = 4;
this.btClear.Text = "clear";
this.btClear.UseVisualStyleBackColor = true;
this.btClear.Click += new System.EventHandler(this.btClear_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(524, 381);
this.Controls.Add(this.btClear);
this.Controls.Add(this.btDelSel);
this.Controls.Add(this.btDelAll);
this.Controls.Add(this.lvList);
this.Controls.Add(this.cbVSVersion);
this.Name = "Form1";
this.Text = "VisualStudio Recent Project Manager";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ComboBox cbVSVersion;
private System.Windows.Forms.ListView lvList;
private System.Windows.Forms.ColumnHeader num;
private System.Windows.Forms.ColumnHeader name;
private System.Windows.Forms.ColumnHeader path;
private System.Windows.Forms.Button btDelAll;
private System.Windows.Forms.Button btDelSel;
private System.Windows.Forms.Button btClear;
}
}