namespace WinGridProxy
{
partial class FormPluginManager
{
///
/// 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.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.buttonLoadPlugin = new System.Windows.Forms.Button();
this.buttonClose = new System.Windows.Forms.Button();
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.DefaultExt = "dll";
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.Filter = "GridProxy Plugins|*.dll";
this.openFileDialog1.Multiselect = true;
this.openFileDialog1.Title = "Load GridProxy Plugin";
//
// buttonLoadPlugin
//
this.buttonLoadPlugin.Location = new System.Drawing.Point(12, 247);
this.buttonLoadPlugin.Name = "buttonLoadPlugin";
this.buttonLoadPlugin.Size = new System.Drawing.Size(75, 23);
this.buttonLoadPlugin.TabIndex = 0;
this.buttonLoadPlugin.Text = "Load";
this.buttonLoadPlugin.UseVisualStyleBackColor = true;
this.buttonLoadPlugin.Click += new System.EventHandler(this.buttonLoadPlugin_Click);
//
// buttonClose
//
this.buttonClose.Location = new System.Drawing.Point(174, 247);
this.buttonClose.Name = "buttonClose";
this.buttonClose.Size = new System.Drawing.Size(75, 23);
this.buttonClose.TabIndex = 3;
this.buttonClose.Text = "Close";
this.buttonClose.UseVisualStyleBackColor = true;
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.listView1.Location = new System.Drawing.Point(12, 12);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(237, 229);
this.listView1.TabIndex = 4;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
this.columnHeader1.Width = 89;
//
// columnHeader2
//
this.columnHeader2.Text = "Path";
this.columnHeader2.Width = 142;
//
// FormPluginManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonClose;
this.ClientSize = new System.Drawing.Size(262, 280);
this.Controls.Add(this.listView1);
this.Controls.Add(this.buttonClose);
this.Controls.Add(this.buttonLoadPlugin);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "FormPluginManager";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Plugin Manager";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button buttonLoadPlugin;
private System.Windows.Forms.Button buttonClose;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
}
}