ProgressBox.Designer.cs (OpenSystems)
namespace HostAndWeb
{
partial class ProgressBox
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.MessageLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
this.MessageLabel.AutoSize = true;
this.MessageLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.MessageLabel.Location = new System.Drawing.Point(111, 41);
this.MessageLabel.Name = "MessageLabel";
this.MessageLabel.Size = new System.Drawing.Size(208, 29);
this.MessageLabel.TabIndex = 0;
this.MessageLabel.Text = "Please wait ......";
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(439, 127);
this.Controls.Add(this.MessageLabel);
this.Name = "ProgressBox";
this.Text = "Progress";
this.Load += new System.EventHandler(this.ProcessBox_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label MessageLabel;
}
}
|