namespace UVtools.GUI.Forms { partial class FrmLoading { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLoading)); this.progressBar = new System.Windows.Forms.ProgressBar(); this.lbDescription = new System.Windows.Forms.Label(); this.timer = new System.Windows.Forms.Timer(this.components); this.lbElapsedTime = new System.Windows.Forms.Label(); this.lbWait = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.lbOperation = new System.Windows.Forms.Label(); this.pnActions = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.panel1.SuspendLayout(); this.pnActions.SuspendLayout(); this.SuspendLayout(); // // progressBar // this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.progressBar.Location = new System.Drawing.Point(0, 0); this.progressBar.Name = "progressBar"; this.progressBar.Size = new System.Drawing.Size(374, 29); this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee; this.progressBar.TabIndex = 0; // // lbDescription // this.lbDescription.AutoSize = true; this.lbDescription.Location = new System.Drawing.Point(3, 12); this.lbDescription.Name = "lbDescription"; this.lbDescription.Size = new System.Drawing.Size(83, 18); this.lbDescription.TabIndex = 1; this.lbDescription.Text = "Description"; // // timer // this.timer.Tick += new System.EventHandler(this.timer_Tick); // // lbElapsedTime // this.lbElapsedTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.lbElapsedTime.AutoSize = true; this.lbElapsedTime.Location = new System.Drawing.Point(3, 39); this.lbElapsedTime.Name = "lbElapsedTime"; this.lbElapsedTime.Size = new System.Drawing.Size(41, 18); this.lbElapsedTime.TabIndex = 2; this.lbElapsedTime.Text = "Time"; // // lbWait // this.lbWait.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.lbWait.AutoSize = true; this.lbWait.Location = new System.Drawing.Point(362, 39); this.lbWait.Name = "lbWait"; this.lbWait.Size = new System.Drawing.Size(95, 18); this.lbWait.TabIndex = 3; this.lbWait.Text = "Please wait..."; // // panel1 // this.panel1.AutoSize = true; this.panel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel1.Controls.Add(this.lbOperation); this.panel1.Controls.Add(this.lbDescription); this.panel1.Controls.Add(this.lbWait); this.panel1.Controls.Add(this.lbElapsedTime); this.panel1.Controls.Add(this.pnActions); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.MinimumSize = new System.Drawing.Size(470, 124); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(470, 124); this.panel1.TabIndex = 4; // // lbOperation // this.lbOperation.Dock = System.Windows.Forms.DockStyle.Bottom; this.lbOperation.Location = new System.Drawing.Point(0, 67); this.lbOperation.Name = "lbOperation"; this.lbOperation.Size = new System.Drawing.Size(468, 26); this.lbOperation.TabIndex = 4; this.lbOperation.Text = "Operation"; this.lbOperation.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // pnActions // this.pnActions.Controls.Add(this.btnCancel); this.pnActions.Controls.Add(this.progressBar); this.pnActions.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnActions.Location = new System.Drawing.Point(0, 93); this.pnActions.Name = "pnActions"; this.pnActions.Size = new System.Drawing.Size(468, 29); this.pnActions.TabIndex = 5; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.AutoSize = true; this.btnCancel.Location = new System.Drawing.Point(374, 0); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(94, 29); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Cancel"; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // FrmLoading // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.ClientSize = new System.Drawing.Size(470, 124); this.ControlBox = false; this.Controls.Add(this.panel1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FrmLoading"; this.ShowInTaskbar = false; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Loading"; this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.pnActions.ResumeLayout(false); this.pnActions.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ProgressBar progressBar; private System.Windows.Forms.Label lbDescription; private System.Windows.Forms.Timer timer; private System.Windows.Forms.Label lbElapsedTime; private System.Windows.Forms.Label lbWait; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Label lbOperation; private System.Windows.Forms.Panel pnActions; private System.Windows.Forms.Button btnCancel; } }