Files
duplicati/Duplicati/GUI/Duplicati.GUI.TrayIcon/WindowsImplementation/BrowserWindow.Designer.cs
T
2012-05-05 20:13:33 +00:00

72 lines
2.6 KiB
C#

namespace Duplicati.GUI.TrayIcon.Windows
{
partial class WindowsBrowser
{
/// <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.Browser = new System.Windows.Forms.WebBrowser();
this.loadingLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// Browser
//
this.Browser.Dock = System.Windows.Forms.DockStyle.Fill;
this.Browser.Location = new System.Drawing.Point(0, 0);
this.Browser.MinimumSize = new System.Drawing.Size(20, 20);
this.Browser.Name = "Browser";
this.Browser.Size = new System.Drawing.Size(284, 262);
this.Browser.TabIndex = 0;
//
// loadingLabel
//
this.loadingLabel.Dock = System.Windows.Forms.DockStyle.Fill;
this.loadingLabel.Location = new System.Drawing.Point(0, 0);
this.loadingLabel.Name = "loadingLabel";
this.loadingLabel.Size = new System.Drawing.Size(284, 262);
this.loadingLabel.TabIndex = 1;
this.loadingLabel.Text = "Loading ...";
this.loadingLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// WindowsBrowser
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.Browser);
this.Controls.Add(this.loadingLabel);
this.Name = "WindowsBrowser";
this.Text = "BrowserWindow";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.WebBrowser Browser;
private System.Windows.Forms.Label loadingLabel;
}
}