Status: Fixed Removed error message when user cancels the file content listing. Also fixed a similar error in other places where the operation can be canceled. git-svn-id: https://duplicati.googlecode.com/svn/trunk@546 59da171f-624f-0410-aa54-27559c288bec
118 lines
5.2 KiB
C#
118 lines
5.2 KiB
C#
namespace Duplicati.GUI
|
|
{
|
|
partial class ListBackupFiles
|
|
{
|
|
/// <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 Windows Form 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(ListBackupFiles));
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|
this.ContentPanel = new System.Windows.Forms.Panel();
|
|
this.ContentTree = new System.Windows.Forms.TreeView();
|
|
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
|
this.CancelBtn = new System.Windows.Forms.Button();
|
|
this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|
this.groupBox1.SuspendLayout();
|
|
this.ContentPanel.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
resources.ApplyResources(this.groupBox1, "groupBox1");
|
|
this.groupBox1.Controls.Add(this.progressBar1);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.TabStop = false;
|
|
//
|
|
// progressBar1
|
|
//
|
|
resources.ApplyResources(this.progressBar1, "progressBar1");
|
|
this.progressBar1.Name = "progressBar1";
|
|
this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
//
|
|
// ContentPanel
|
|
//
|
|
resources.ApplyResources(this.ContentPanel, "ContentPanel");
|
|
this.ContentPanel.Controls.Add(this.ContentTree);
|
|
this.ContentPanel.Name = "ContentPanel";
|
|
//
|
|
// ContentTree
|
|
//
|
|
resources.ApplyResources(this.ContentTree, "ContentTree");
|
|
this.ContentTree.ImageList = this.imageList;
|
|
this.ContentTree.Name = "ContentTree";
|
|
this.ContentTree.ShowNodeToolTips = true;
|
|
//
|
|
// imageList
|
|
//
|
|
this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
|
|
resources.ApplyResources(this.imageList, "imageList");
|
|
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
|
//
|
|
// CancelBtn
|
|
//
|
|
resources.ApplyResources(this.CancelBtn, "CancelBtn");
|
|
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.CancelBtn.Name = "CancelBtn";
|
|
this.CancelBtn.UseVisualStyleBackColor = true;
|
|
//
|
|
// backgroundWorker1
|
|
//
|
|
this.backgroundWorker1.WorkerSupportsCancellation = true;
|
|
this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
|
|
this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
|
|
//
|
|
// ListBackupFiles
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.CancelBtn;
|
|
this.Controls.Add(this.CancelBtn);
|
|
this.Controls.Add(this.ContentPanel);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
|
this.Name = "ListBackupFiles";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ListBackupFiles_FormClosing);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.ContentPanel.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.ProgressBar progressBar1;
|
|
private System.Windows.Forms.Panel ContentPanel;
|
|
private System.Windows.Forms.Button CancelBtn;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|
private System.Windows.Forms.ImageList imageList;
|
|
private System.Windows.Forms.TreeView ContentTree;
|
|
}
|
|
} |