Files
duplicati/Duplicati/GUI/HelperControls/BackupFileList.Designer.cs
T
kenneth.skovhede@gmail.com 50f06f0f3a Merge Sandbox Issue #5 into trunk.
Fixed issue #5.
Fixed issue #48.
Fixed issue #58.
Fixed issue #194.
Fixed issue #195.
Fixed issue #201.
Fixed issue #137.

git-svn-id: https://duplicati.googlecode.com/svn/trunk@400 59da171f-624f-0410-aa54-27559c288bec
2010-05-12 08:41:54 +00:00

133 lines
6.9 KiB
C#

namespace Duplicati.GUI.HelperControls
{
partial class BackupFileList
{
/// <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();
this.treeView = new System.Windows.Forms.TreeView();
this.LoadingIndicator = new System.Windows.Forms.GroupBox();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.changeDestinationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
this.LoadingIndicator.SuspendLayout();
this.contextMenuStrip.SuspendLayout();
this.SuspendLayout();
//
// treeView
//
this.treeView.CheckBoxes = true;
this.treeView.ContextMenuStrip = this.contextMenuStrip;
this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView.LabelEdit = true;
this.treeView.Location = new System.Drawing.Point(0, 0);
this.treeView.Name = "treeView";
this.treeView.ShowNodeToolTips = true;
this.treeView.Size = new System.Drawing.Size(449, 214);
this.treeView.TabIndex = 0;
this.treeView.Visible = false;
this.treeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterCheck);
this.treeView.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterCollapse);
this.treeView.DoubleClick += new System.EventHandler(this.treeView_DoubleClick);
this.treeView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.treeView_KeyUp);
this.treeView.BeforeLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.treeView_BeforeLabelEdit);
this.treeView.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterExpand);
//
// LoadingIndicator
//
this.LoadingIndicator.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.LoadingIndicator.Controls.Add(this.progressBar);
this.LoadingIndicator.Location = new System.Drawing.Point(16, 72);
this.LoadingIndicator.Name = "LoadingIndicator";
this.LoadingIndicator.Size = new System.Drawing.Size(416, 64);
this.LoadingIndicator.TabIndex = 1;
this.LoadingIndicator.TabStop = false;
this.LoadingIndicator.Text = "Reading filelist, please wait ...";
this.LoadingIndicator.Visible = false;
//
// progressBar
//
this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.progressBar.Location = new System.Drawing.Point(8, 24);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(400, 23);
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
this.progressBar.TabIndex = 0;
//
// backgroundWorker
//
this.backgroundWorker.WorkerSupportsCancellation = true;
this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork);
this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted);
//
// contextMenuStrip
//
this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.changeDestinationToolStripMenuItem});
this.contextMenuStrip.Name = "contextMenuStrip";
this.contextMenuStrip.Size = new System.Drawing.Size(187, 26);
this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
//
// changeDestinationToolStripMenuItem
//
this.changeDestinationToolStripMenuItem.Name = "changeDestinationToolStripMenuItem";
this.changeDestinationToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
this.changeDestinationToolStripMenuItem.Text = "Change destination...";
this.changeDestinationToolStripMenuItem.Click += new System.EventHandler(this.changeDestinationToolStripMenuItem_Click);
//
// folderBrowserDialog
//
this.folderBrowserDialog.Description = "Select the folder to restore to";
//
// BackupFileList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.LoadingIndicator);
this.Controls.Add(this.treeView);
this.Name = "BackupFileList";
this.Size = new System.Drawing.Size(449, 214);
this.LoadingIndicator.ResumeLayout(false);
this.contextMenuStrip.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TreeView treeView;
private System.Windows.Forms.GroupBox LoadingIndicator;
private System.Windows.Forms.ProgressBar progressBar;
private System.ComponentModel.BackgroundWorker backgroundWorker;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem changeDestinationToolStripMenuItem;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
}
}