Server/ProgressForm.Designer.cs
author StephaneLenclud
Thu, 05 Feb 2015 17:04:59 +0100
changeset 106 32270ff62819
permissions -rw-r--r--
Server: Adding scrolling speed setting.
Fixing issue with alignment of newly created text field not being set properly.
Client: Now starting-up first client automatically in debug mode.
     1 namespace BackgroundWorkerDemo
     2 {
     3     partial class ProgressForm
     4     {
     5         /// <summary>
     6         /// Required designer variable.
     7         /// </summary>
     8         private System.ComponentModel.IContainer components = null;
     9 
    10         /// <summary>
    11         /// Clean up any resources being used.
    12         /// </summary>
    13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    14         protected override void Dispose(bool disposing)
    15         {
    16             if (disposing && (components != null))
    17             {
    18                 components.Dispose();
    19             }
    20             base.Dispose(disposing);
    21         }
    22 
    23         #region Windows Form Designer generated code
    24 
    25         /// <summary>
    26         /// Required method for Designer support - do not modify
    27         /// the contents of this method with the code editor.
    28         /// </summary>
    29         private void InitializeComponent()
    30         {
    31             this.labelMessage = new System.Windows.Forms.Label();
    32             this.progressBar1 = new System.Windows.Forms.ProgressBar();
    33             this.buttonCancel = new System.Windows.Forms.Button();
    34             this.SuspendLayout();
    35             // 
    36             // labelMessage
    37             // 
    38             this.labelMessage.AutoSize = true;
    39             this.labelMessage.Location = new System.Drawing.Point(44, 25);
    40             this.labelMessage.Name = "labelMessage";
    41             this.labelMessage.Size = new System.Drawing.Size(127, 13);
    42             this.labelMessage.TabIndex = 0;
    43             this.labelMessage.Text = "In progress, please wait...";
    44             // 
    45             // progressBar1
    46             // 
    47             this.progressBar1.Location = new System.Drawing.Point(47, 52);
    48             this.progressBar1.Name = "progressBar1";
    49             this.progressBar1.Size = new System.Drawing.Size(195, 23);
    50             this.progressBar1.TabIndex = 1;
    51             // 
    52             // buttonCancel
    53             // 
    54             this.buttonCancel.Location = new System.Drawing.Point(167, 83);
    55             this.buttonCancel.Name = "buttonCancel";
    56             this.buttonCancel.Size = new System.Drawing.Size(75, 23);
    57             this.buttonCancel.TabIndex = 2;
    58             this.buttonCancel.Text = "Cancel";
    59             this.buttonCancel.UseVisualStyleBackColor = true;
    60             this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
    61             // 
    62             // AlertForm
    63             // 
    64             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    65             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    66             this.ClientSize = new System.Drawing.Size(280, 127);
    67             this.ControlBox = false;
    68             this.Controls.Add(this.buttonCancel);
    69             this.Controls.Add(this.progressBar1);
    70             this.Controls.Add(this.labelMessage);
    71             this.Name = "AlertForm";
    72             this.ShowIcon = false;
    73             this.ShowInTaskbar = false;
    74             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
    75             this.Text = "Processing";
    76             this.TopMost = true;
    77             this.ResumeLayout(false);
    78             this.PerformLayout();
    79 
    80         }
    81 
    82         #endregion
    83 
    84         private System.Windows.Forms.Label labelMessage;
    85         private System.Windows.Forms.ProgressBar progressBar1;
    86         private System.Windows.Forms.Button buttonCancel;
    87     }
    88 }