mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
96 lines
4.1 KiB
C#
96 lines
4.1 KiB
C#
using System.Windows.Forms;
|
|
|
|
namespace Bloxstrap.Dialogs.BootstrapperDialogs
|
|
{
|
|
partial class LegacyDialog2009
|
|
{
|
|
/// <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.labelMessage = new System.Windows.Forms.Label();
|
|
this.ProgressBar = new System.Windows.Forms.ProgressBar();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelMessage
|
|
//
|
|
this.labelMessage.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.labelMessage.Location = new System.Drawing.Point(12, 16);
|
|
this.labelMessage.Name = "labelMessage";
|
|
this.labelMessage.Size = new System.Drawing.Size(287, 17);
|
|
this.labelMessage.TabIndex = 0;
|
|
this.labelMessage.Text = "Please wait...";
|
|
//
|
|
// ProgressBar
|
|
//
|
|
this.ProgressBar.Location = new System.Drawing.Point(15, 47);
|
|
this.ProgressBar.MarqueeAnimationSpeed = 33;
|
|
this.ProgressBar.Name = "ProgressBar";
|
|
this.ProgressBar.Size = new System.Drawing.Size(281, 20);
|
|
this.ProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
this.ProgressBar.TabIndex = 1;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Enabled = false;
|
|
this.buttonCancel.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.buttonCancel.Location = new System.Drawing.Point(221, 83);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 3;
|
|
this.buttonCancel.Text = "Cancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// LegacyDialog2009
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(311, 122);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.ProgressBar);
|
|
this.Controls.Add(this.labelMessage);
|
|
this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MaximumSize = new System.Drawing.Size(327, 161);
|
|
this.MinimizeBox = false;
|
|
this.MinimumSize = new System.Drawing.Size(327, 161);
|
|
this.Name = "LegacyDialog2009";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "LegacyDialog2009";
|
|
this.Load += new System.EventHandler(this.LegacyDialog2009_Load);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelMessage;
|
|
private ProgressBar ProgressBar;
|
|
private Button buttonCancel;
|
|
}
|
|
} |