Server/ProgressForm.Designer.cs
changeset 91 61e2e2d41c0a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Server/ProgressForm.Designer.cs	Sat Jan 17 18:26:41 2015 +0100
     1.3 @@ -0,0 +1,88 @@
     1.4 +namespace BackgroundWorkerDemo
     1.5 +{
     1.6 +    partial class ProgressForm
     1.7 +    {
     1.8 +        /// <summary>
     1.9 +        /// Required designer variable.
    1.10 +        /// </summary>
    1.11 +        private System.ComponentModel.IContainer components = null;
    1.12 +
    1.13 +        /// <summary>
    1.14 +        /// Clean up any resources being used.
    1.15 +        /// </summary>
    1.16 +        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    1.17 +        protected override void Dispose(bool disposing)
    1.18 +        {
    1.19 +            if (disposing && (components != null))
    1.20 +            {
    1.21 +                components.Dispose();
    1.22 +            }
    1.23 +            base.Dispose(disposing);
    1.24 +        }
    1.25 +
    1.26 +        #region Windows Form Designer generated code
    1.27 +
    1.28 +        /// <summary>
    1.29 +        /// Required method for Designer support - do not modify
    1.30 +        /// the contents of this method with the code editor.
    1.31 +        /// </summary>
    1.32 +        private void InitializeComponent()
    1.33 +        {
    1.34 +            this.labelMessage = new System.Windows.Forms.Label();
    1.35 +            this.progressBar1 = new System.Windows.Forms.ProgressBar();
    1.36 +            this.buttonCancel = new System.Windows.Forms.Button();
    1.37 +            this.SuspendLayout();
    1.38 +            // 
    1.39 +            // labelMessage
    1.40 +            // 
    1.41 +            this.labelMessage.AutoSize = true;
    1.42 +            this.labelMessage.Location = new System.Drawing.Point(44, 25);
    1.43 +            this.labelMessage.Name = "labelMessage";
    1.44 +            this.labelMessage.Size = new System.Drawing.Size(127, 13);
    1.45 +            this.labelMessage.TabIndex = 0;
    1.46 +            this.labelMessage.Text = "In progress, please wait...";
    1.47 +            // 
    1.48 +            // progressBar1
    1.49 +            // 
    1.50 +            this.progressBar1.Location = new System.Drawing.Point(47, 52);
    1.51 +            this.progressBar1.Name = "progressBar1";
    1.52 +            this.progressBar1.Size = new System.Drawing.Size(195, 23);
    1.53 +            this.progressBar1.TabIndex = 1;
    1.54 +            // 
    1.55 +            // buttonCancel
    1.56 +            // 
    1.57 +            this.buttonCancel.Location = new System.Drawing.Point(167, 83);
    1.58 +            this.buttonCancel.Name = "buttonCancel";
    1.59 +            this.buttonCancel.Size = new System.Drawing.Size(75, 23);
    1.60 +            this.buttonCancel.TabIndex = 2;
    1.61 +            this.buttonCancel.Text = "Cancel";
    1.62 +            this.buttonCancel.UseVisualStyleBackColor = true;
    1.63 +            this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
    1.64 +            // 
    1.65 +            // AlertForm
    1.66 +            // 
    1.67 +            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    1.68 +            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    1.69 +            this.ClientSize = new System.Drawing.Size(280, 127);
    1.70 +            this.ControlBox = false;
    1.71 +            this.Controls.Add(this.buttonCancel);
    1.72 +            this.Controls.Add(this.progressBar1);
    1.73 +            this.Controls.Add(this.labelMessage);
    1.74 +            this.Name = "AlertForm";
    1.75 +            this.ShowIcon = false;
    1.76 +            this.ShowInTaskbar = false;
    1.77 +            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
    1.78 +            this.Text = "Processing";
    1.79 +            this.TopMost = true;
    1.80 +            this.ResumeLayout(false);
    1.81 +            this.PerformLayout();
    1.82 +
    1.83 +        }
    1.84 +
    1.85 +        #endregion
    1.86 +
    1.87 +        private System.Windows.Forms.Label labelMessage;
    1.88 +        private System.Windows.Forms.ProgressBar progressBar1;
    1.89 +        private System.Windows.Forms.Button buttonCancel;
    1.90 +    }
    1.91 +}
    1.92 \ No newline at end of file