Files
duplicati/Duplicati/Scheduler/Utility/FolderTreeControl.Designer.cs
T
2011-08-02 06:33:50 +00:00

96 lines
4.5 KiB
C#

namespace Utility
{
partial class FolderTreeControl
{
/// <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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FolderTreeControl));
this.treeView = new System.Windows.Forms.TreeView();
this.TreeImageList = new System.Windows.Forms.ImageList(this.components);
this.OpenContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenContextMenuStrip.SuspendLayout();
this.SuspendLayout();
//
// treeView
//
this.treeView.ContextMenuStrip = this.OpenContextMenuStrip;
this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView.ImageIndex = 0;
this.treeView.ImageList = this.TreeImageList;
this.treeView.Location = new System.Drawing.Point(0, 0);
this.treeView.Name = "treeView";
this.treeView.SelectedImageIndex = 0;
this.treeView.Size = new System.Drawing.Size(150, 150);
this.treeView.TabIndex = 0;
this.treeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.treeView_BeforeExpand);
this.treeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseClick);
//
// TreeImageList
//
this.TreeImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("TreeImageList.ImageStream")));
this.TreeImageList.TransparentColor = System.Drawing.Color.Transparent;
this.TreeImageList.Images.SetKeyName(0, "FolderUnchecked.png");
this.TreeImageList.Images.SetKeyName(1, "FolderPartial.png");
this.TreeImageList.Images.SetKeyName(2, "FolderChecked.png");
//
// OpenContextMenuStrip
//
this.OpenContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openToolStripMenuItem});
this.OpenContextMenuStrip.Name = "OpenContextMenuStrip";
this.OpenContextMenuStrip.Size = new System.Drawing.Size(104, 26);
//
// openToolStripMenuItem
//
this.openToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripMenuItem.Image")));
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
this.openToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.openToolStripMenuItem.Text = "Open";
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
//
// FolderTreeControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.treeView);
this.Name = "FolderTreeControl";
this.OpenContextMenuStrip.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TreeView treeView;
private System.Windows.Forms.ImageList TreeImageList;
private System.Windows.Forms.ContextMenuStrip OpenContextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
}
}