EveryFileExplorer/LibEveryFileExplorer/UI/FileBrowser.Designer.cs
2014-11-04 16:22:45 +01:00

248 lines
10 KiB
C#

namespace LibEveryFileExplorer.UI
{
partial class FileBrowser
{
/// <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 Component 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileBrowser));
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.treeView1 = new System.Windows.Forms.TreeView();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.listView1 = new LibEveryFileExplorer.UI.ListViewNF();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.buttonDirAdd = new System.Windows.Forms.ToolStripButton();
this.buttonFileAdd = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.buttonDelete = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.buttonRename = new System.Windows.Forms.ToolStripButton();
this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
this.splitContainer2.Panel1.SuspendLayout();
this.splitContainer2.Panel2.SuspendLayout();
this.splitContainer2.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.treeView1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
this.splitContainer1.Size = new System.Drawing.Size(700, 391);
this.splitContainer1.SplitterDistance = 175;
this.splitContainer1.TabIndex = 0;
//
// treeView1
//
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView1.HideSelection = false;
this.treeView1.HotTracking = true;
this.treeView1.Location = new System.Drawing.Point(0, 0);
this.treeView1.Name = "treeView1";
this.treeView1.PathSeparator = "/";
this.treeView1.ShowLines = false;
this.treeView1.ShowRootLines = false;
this.treeView1.Size = new System.Drawing.Size(175, 391);
this.treeView1.TabIndex = 0;
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
//
// splitContainer2
//
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitContainer2.Location = new System.Drawing.Point(0, 0);
this.splitContainer2.Name = "splitContainer2";
//
// splitContainer2.Panel1
//
this.splitContainer2.Panel1.Controls.Add(this.listView1);
this.splitContainer2.Panel1.Controls.Add(this.toolStrip1);
//
// splitContainer2.Panel2
//
this.splitContainer2.Panel2.Controls.Add(this.propertyGrid1);
this.splitContainer2.Size = new System.Drawing.Size(521, 391);
this.splitContainer2.SplitterDistance = 346;
this.splitContainer2.TabIndex = 0;
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView1.Location = new System.Drawing.Point(0, 25);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(346, 366);
this.listView1.TabIndex = 0;
this.listView1.TileSize = new System.Drawing.Size(168, 36);
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Tile;
this.listView1.ItemActivate += new System.EventHandler(this.listView1_ItemActivate);
this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
this.listView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseClick);
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
//
// columnHeader2
//
this.columnHeader2.Text = "Size";
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.buttonDirAdd,
this.buttonFileAdd,
this.toolStripSeparator1,
this.buttonDelete,
this.toolStripSeparator2,
this.buttonRename});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(346, 25);
this.toolStrip1.TabIndex = 1;
this.toolStrip1.Text = "toolStrip1";
//
// buttonDirAdd
//
this.buttonDirAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonDirAdd.Image = ((System.Drawing.Image)(resources.GetObject("buttonDirAdd.Image")));
this.buttonDirAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonDirAdd.Name = "buttonDirAdd";
this.buttonDirAdd.Size = new System.Drawing.Size(23, 22);
this.buttonDirAdd.Text = "Add Folder";
this.buttonDirAdd.Click += new System.EventHandler(this.buttonDirAdd_Click);
//
// buttonFileAdd
//
this.buttonFileAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonFileAdd.Image = ((System.Drawing.Image)(resources.GetObject("buttonFileAdd.Image")));
this.buttonFileAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonFileAdd.Name = "buttonFileAdd";
this.buttonFileAdd.Size = new System.Drawing.Size(23, 22);
this.buttonFileAdd.Text = "Add File";
this.buttonFileAdd.Click += new System.EventHandler(this.buttonFileAdd_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// buttonDelete
//
this.buttonDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonDelete.Image = ((System.Drawing.Image)(resources.GetObject("buttonDelete.Image")));
this.buttonDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonDelete.Name = "buttonDelete";
this.buttonDelete.Size = new System.Drawing.Size(23, 22);
this.buttonDelete.Text = "Delete";
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// buttonRename
//
this.buttonRename.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.buttonRename.Image = ((System.Drawing.Image)(resources.GetObject("buttonRename.Image")));
this.buttonRename.ImageTransparentColor = System.Drawing.Color.Magenta;
this.buttonRename.Name = "buttonRename";
this.buttonRename.Size = new System.Drawing.Size(23, 22);
this.buttonRename.Text = "Rename";
this.buttonRename.Click += new System.EventHandler(this.buttonRename_Click);
//
// propertyGrid1
//
this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
this.propertyGrid1.Location = new System.Drawing.Point(0, 0);
this.propertyGrid1.Name = "propertyGrid1";
this.propertyGrid1.Size = new System.Drawing.Size(171, 391);
this.propertyGrid1.TabIndex = 0;
//
// FileBrowser
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.splitContainer1);
this.Name = "FileBrowser";
this.Size = new System.Drawing.Size(700, 391);
this.Load += new System.EventHandler(this.FileBrowser_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.splitContainer2.Panel1.ResumeLayout(false);
this.splitContainer2.Panel1.PerformLayout();
this.splitContainer2.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
this.splitContainer2.ResumeLayout(false);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.TreeView treeView1;
private System.Windows.Forms.SplitContainer splitContainer2;
private ListViewNF listView1;
private System.Windows.Forms.PropertyGrid propertyGrid1;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton buttonDirAdd;
private System.Windows.Forms.ToolStripButton buttonFileAdd;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton buttonRename;
private System.Windows.Forms.ToolStripButton buttonDelete;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
}
}