git-svn-id: https://duplicati.googlecode.com/svn/trunk@38 59da171f-624f-0410-aa54-27559c288bec
102 lines
4.5 KiB
C#
102 lines
4.5 KiB
C#
namespace Duplicati.GUI.HelperControls
|
|
{
|
|
partial class BackupItems
|
|
{
|
|
/// <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.listView = new System.Windows.Forms.ListView();
|
|
this.statusLabel = new System.Windows.Forms.Label();
|
|
this.progressBar = new System.Windows.Forms.ProgressBar();
|
|
this.WaitPanel = new System.Windows.Forms.Panel();
|
|
this.WaitPanel.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// listView
|
|
//
|
|
this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listView.Location = new System.Drawing.Point(0, 0);
|
|
this.listView.Name = "listView";
|
|
this.listView.Size = new System.Drawing.Size(203, 139);
|
|
this.listView.TabIndex = 0;
|
|
this.listView.UseCompatibleStateImageBehavior = false;
|
|
this.listView.View = System.Windows.Forms.View.List;
|
|
this.listView.Visible = false;
|
|
//
|
|
// statusLabel
|
|
//
|
|
this.statusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.statusLabel.Location = new System.Drawing.Point(0, 8);
|
|
this.statusLabel.Name = "statusLabel";
|
|
this.statusLabel.Size = new System.Drawing.Size(184, 16);
|
|
this.statusLabel.TabIndex = 1;
|
|
this.statusLabel.Text = "Loading list of backups";
|
|
this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// progressBar
|
|
//
|
|
this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.progressBar.Location = new System.Drawing.Point(0, 56);
|
|
this.progressBar.Name = "progressBar";
|
|
this.progressBar.Size = new System.Drawing.Size(184, 16);
|
|
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
this.progressBar.TabIndex = 2;
|
|
//
|
|
// WaitPanel
|
|
//
|
|
this.WaitPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.WaitPanel.Controls.Add(this.progressBar);
|
|
this.WaitPanel.Controls.Add(this.statusLabel);
|
|
this.WaitPanel.Location = new System.Drawing.Point(8, 16);
|
|
this.WaitPanel.Name = "WaitPanel";
|
|
this.WaitPanel.Size = new System.Drawing.Size(184, 72);
|
|
this.WaitPanel.TabIndex = 3;
|
|
//
|
|
// BackupItems
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.WaitPanel);
|
|
this.Controls.Add(this.listView);
|
|
this.Name = "BackupItems";
|
|
this.Size = new System.Drawing.Size(203, 139);
|
|
this.WaitPanel.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label statusLabel;
|
|
private System.Windows.Forms.ProgressBar progressBar;
|
|
private System.Windows.Forms.Panel WaitPanel;
|
|
public System.Windows.Forms.ListView listView;
|
|
}
|
|
}
|