git-svn-id: https://duplicati.googlecode.com/svn/trunk@82 59da171f-624f-0410-aa54-27559c288bec
96 lines
4.2 KiB
C#
96 lines
4.2 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.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.LoadingIndicator.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// treeView
|
|
//
|
|
this.treeView.CheckBoxes = true;
|
|
this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.treeView.Location = new System.Drawing.Point(0, 0);
|
|
this.treeView.Name = "treeView";
|
|
this.treeView.Size = new System.Drawing.Size(449, 214);
|
|
this.treeView.TabIndex = 0;
|
|
this.treeView.Visible = false;
|
|
//
|
|
// 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);
|
|
//
|
|
// 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.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;
|
|
}
|
|
}
|