99 lines
3.8 KiB
C#
99 lines
3.8 KiB
C#
namespace CloudBuilder.Gui
|
|
{
|
|
partial class ProgressForm
|
|
{
|
|
/// <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()
|
|
{
|
|
tableLayoutPanel1 = new TableLayoutPanel();
|
|
messageLabel = new Krypton.Toolkit.KryptonLabel();
|
|
progressBar = new Krypton.Toolkit.KryptonProgressBar();
|
|
tableLayoutPanel1.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
tableLayoutPanel1.AutoSize = true;
|
|
tableLayoutPanel1.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
tableLayoutPanel1.ColumnCount = 1;
|
|
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle());
|
|
tableLayoutPanel1.Controls.Add(messageLabel, 0, 0);
|
|
tableLayoutPanel1.Controls.Add(progressBar, 0, 1);
|
|
tableLayoutPanel1.Dock = DockStyle.Fill;
|
|
tableLayoutPanel1.Location = new Point(0, 0);
|
|
tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
tableLayoutPanel1.RowCount = 2;
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle());
|
|
tableLayoutPanel1.RowStyles.Add(new RowStyle());
|
|
tableLayoutPanel1.Size = new Size(400, 59);
|
|
tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// messageLabel
|
|
//
|
|
messageLabel.Dock = DockStyle.Fill;
|
|
messageLabel.Location = new Point(3, 3);
|
|
messageLabel.Name = "messageLabel";
|
|
messageLabel.Size = new Size(394, 20);
|
|
messageLabel.TabIndex = 0;
|
|
messageLabel.Values.Text = "正在处理中,请稍等...";
|
|
//
|
|
// progressBar
|
|
//
|
|
progressBar.Dock = DockStyle.Fill;
|
|
progressBar.Location = new Point(3, 29);
|
|
progressBar.Name = "progressBar";
|
|
progressBar.Size = new Size(394, 27);
|
|
progressBar.StateCommon.Back.Color1 = Color.Green;
|
|
progressBar.StateDisabled.Back.ColorStyle = Krypton.Toolkit.PaletteColorStyle.OneNote;
|
|
progressBar.StateNormal.Back.ColorStyle = Krypton.Toolkit.PaletteColorStyle.OneNote;
|
|
progressBar.TabIndex = 1;
|
|
progressBar.Values.Text = "";
|
|
//
|
|
// ProgressForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
AutoSize = true;
|
|
AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
ClientSize = new Size(400, 59);
|
|
CloseBox = false;
|
|
Controls.Add(tableLayoutPanel1);
|
|
FormBorderStyle = FormBorderStyle.None;
|
|
Name = "ProgressForm";
|
|
Text = "ProgressForm";
|
|
tableLayoutPanel1.ResumeLayout(false);
|
|
tableLayoutPanel1.PerformLayout();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TableLayoutPanel tableLayoutPanel1;
|
|
private Krypton.Toolkit.KryptonLabel messageLabel;
|
|
private Krypton.Toolkit.KryptonProgressBar progressBar;
|
|
}
|
|
} |