Also fixed various UI problems that were found. git-svn-id: https://duplicati.googlecode.com/svn/trunk@322 59da171f-624f-0410-aa54-27559c288bec
74 lines
3.1 KiB
C#
74 lines
3.1 KiB
C#
namespace Duplicati.GUI.HelperControls
|
|
{
|
|
partial class BackupTreeView
|
|
{
|
|
/// <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(BackupTreeView));
|
|
this.treeView = new System.Windows.Forms.TreeView();
|
|
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// treeView
|
|
//
|
|
this.treeView.AllowDrop = true;
|
|
resources.ApplyResources(this.treeView, "treeView");
|
|
this.treeView.ImageList = this.imageList;
|
|
this.treeView.LabelEdit = true;
|
|
this.treeView.Name = "treeView";
|
|
this.treeView.DoubleClick += new System.EventHandler(this.treeView_DoubleClick);
|
|
this.treeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeView_DragDrop);
|
|
this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect);
|
|
this.treeView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.treeView_KeyUp);
|
|
this.treeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeView_ItemDrag);
|
|
this.treeView.DragOver += new System.Windows.Forms.DragEventHandler(this.treeView_DragOver);
|
|
//
|
|
// imageList
|
|
//
|
|
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
|
|
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
this.imageList.Images.SetKeyName(0, "Folder");
|
|
this.imageList.Images.SetKeyName(1, "Backup");
|
|
//
|
|
// BackupTreeView
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.treeView);
|
|
this.Name = "BackupTreeView";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ImageList imageList;
|
|
public System.Windows.Forms.TreeView treeView;
|
|
}
|
|
}
|