1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-11-28 09:20:53 +01:00
VoxCharger/Sources/Forms/LoadingForm.designer.cs
2020-04-19 03:24:48 +07:00

75 lines
2.9 KiB
C#

namespace VoxCharger
{
partial class LoadingForm
{
/// <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.ProgressBar = new System.Windows.Forms.ProgressBar();
this.StatusLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// ProgressBar
//
this.ProgressBar.Location = new System.Drawing.Point(12, 12);
this.ProgressBar.Name = "ProgressBar";
this.ProgressBar.Size = new System.Drawing.Size(335, 28);
this.ProgressBar.TabIndex = 0;
//
// StatusLabel
//
this.StatusLabel.Location = new System.Drawing.Point(9, 43);
this.StatusLabel.Name = "StatusLabel";
this.StatusLabel.Size = new System.Drawing.Size(338, 13);
this.StatusLabel.TabIndex = 1;
this.StatusLabel.Text = "Loading";
this.StatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// LoadingForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(359, 70);
this.ControlBox = false;
this.Controls.Add(this.StatusLabel);
this.Controls.Add(this.ProgressBar);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "LoadingForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Processing";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnLoadingFormFormClosing);
this.Load += new System.EventHandler(this.OnLoadingForm);
this.Shown += new System.EventHandler(this.OnLoadingFormShown);
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.ProgressBar ProgressBar;
public System.Windows.Forms.Label StatusLabel;
}
}