namespace BizHawk { partial class ProgressDialog { /// /// 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.progressBar1 = new System.Windows.Forms.ProgressBar(); this.btnCancel = new System.Windows.Forms.Button(); this.lblMessage = new System.Windows.Forms.Label(); this.SuspendLayout(); // // progressBar1 // this.progressBar1.Location = new System.Drawing.Point(12, 18); this.progressBar1.Name = "progressBar1"; this.progressBar1.Size = new System.Drawing.Size(353, 23); this.progressBar1.TabIndex = 0; // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(290, 63); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // lblMessage // this.lblMessage.AutoSize = true; this.lblMessage.Location = new System.Drawing.Point(12, 63); this.lblMessage.Name = "lblMessage"; this.lblMessage.Size = new System.Drawing.Size(31, 13); this.lblMessage.TabIndex = 2; this.lblMessage.Text = "Task"; // // ProgressDialog // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(377, 98); this.ControlBox = false; this.Controls.Add(this.lblMessage); this.Controls.Add(this.btnCancel); this.Controls.Add(this.progressBar1); this.Name = "ProgressDialog"; this.Text = "Progress"; this.Load += new System.EventHandler(this.ProgressDialog_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ProgressBar progressBar1; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Label lblMessage; } }