98 lines
3.6 KiB
C#
98 lines
3.6 KiB
C#
namespace ELMA
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.lblApp = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.lblVers = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.progBar = new System.Windows.Forms.ToolStripProgressBar();
|
|
this.timerUI = new System.Windows.Forms.Timer(this.components);
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.lblApp,
|
|
this.lblVers,
|
|
this.progBar});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 428);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(800, 22);
|
|
this.statusStrip1.TabIndex = 1;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// lblApp
|
|
//
|
|
this.lblApp.Name = "lblApp";
|
|
this.lblApp.Size = new System.Drawing.Size(44, 17);
|
|
this.lblApp.Text = "SELMA";
|
|
//
|
|
// lblVers
|
|
//
|
|
this.lblVers.Name = "lblVers";
|
|
this.lblVers.Size = new System.Drawing.Size(49, 17);
|
|
this.lblVers.Text = "v.0.0.0.0";
|
|
//
|
|
// progBar
|
|
//
|
|
this.progBar.Name = "progBar";
|
|
this.progBar.Size = new System.Drawing.Size(100, 16);
|
|
//
|
|
// timerUI
|
|
//
|
|
this.timerUI.Interval = 50;
|
|
this.timerUI.Tick += new System.EventHandler(this.timerUI_Tick);
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.IsMdiContainer = true;
|
|
this.Name = "MainForm";
|
|
this.Text = "MainForm";
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel lblApp;
|
|
private System.Windows.Forms.ToolStripStatusLabel lblVers;
|
|
private System.Windows.Forms.ToolStripProgressBar progBar;
|
|
private System.Windows.Forms.Timer timerUI;
|
|
}
|
|
} |