sl@91: namespace BackgroundWorkerDemo
sl@91: {
sl@91: partial class ProgressForm
sl@91: {
sl@91: ///
sl@91: /// Required designer variable.
sl@91: ///
sl@91: private System.ComponentModel.IContainer components = null;
sl@91:
sl@91: ///
sl@91: /// Clean up any resources being used.
sl@91: ///
sl@91: /// true if managed resources should be disposed; otherwise, false.
sl@91: protected override void Dispose(bool disposing)
sl@91: {
sl@91: if (disposing && (components != null))
sl@91: {
sl@91: components.Dispose();
sl@91: }
sl@91: base.Dispose(disposing);
sl@91: }
sl@91:
sl@91: #region Windows Form Designer generated code
sl@91:
sl@91: ///
sl@91: /// Required method for Designer support - do not modify
sl@91: /// the contents of this method with the code editor.
sl@91: ///
sl@91: private void InitializeComponent()
sl@91: {
sl@91: this.labelMessage = new System.Windows.Forms.Label();
sl@91: this.progressBar1 = new System.Windows.Forms.ProgressBar();
sl@91: this.buttonCancel = new System.Windows.Forms.Button();
sl@91: this.SuspendLayout();
sl@91: //
sl@91: // labelMessage
sl@91: //
sl@91: this.labelMessage.AutoSize = true;
sl@91: this.labelMessage.Location = new System.Drawing.Point(44, 25);
sl@91: this.labelMessage.Name = "labelMessage";
sl@91: this.labelMessage.Size = new System.Drawing.Size(127, 13);
sl@91: this.labelMessage.TabIndex = 0;
sl@91: this.labelMessage.Text = "In progress, please wait...";
sl@91: //
sl@91: // progressBar1
sl@91: //
sl@91: this.progressBar1.Location = new System.Drawing.Point(47, 52);
sl@91: this.progressBar1.Name = "progressBar1";
sl@91: this.progressBar1.Size = new System.Drawing.Size(195, 23);
sl@91: this.progressBar1.TabIndex = 1;
sl@91: //
sl@91: // buttonCancel
sl@91: //
sl@91: this.buttonCancel.Location = new System.Drawing.Point(167, 83);
sl@91: this.buttonCancel.Name = "buttonCancel";
sl@91: this.buttonCancel.Size = new System.Drawing.Size(75, 23);
sl@91: this.buttonCancel.TabIndex = 2;
sl@91: this.buttonCancel.Text = "Cancel";
sl@91: this.buttonCancel.UseVisualStyleBackColor = true;
sl@91: this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
sl@91: //
sl@91: // AlertForm
sl@91: //
sl@91: this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
sl@91: this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
sl@91: this.ClientSize = new System.Drawing.Size(280, 127);
sl@91: this.ControlBox = false;
sl@91: this.Controls.Add(this.buttonCancel);
sl@91: this.Controls.Add(this.progressBar1);
sl@91: this.Controls.Add(this.labelMessage);
sl@91: this.Name = "AlertForm";
sl@91: this.ShowIcon = false;
sl@91: this.ShowInTaskbar = false;
sl@91: this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
sl@91: this.Text = "Processing";
sl@91: this.TopMost = true;
sl@91: this.ResumeLayout(false);
sl@91: this.PerformLayout();
sl@91:
sl@91: }
sl@91:
sl@91: #endregion
sl@91:
sl@91: private System.Windows.Forms.Label labelMessage;
sl@91: private System.Windows.Forms.ProgressBar progressBar1;
sl@91: private System.Windows.Forms.Button buttonCancel;
sl@91: }
sl@91: }