Adding Visual Studio Setup project.
1 namespace BackgroundWorkerDemo
3 partial class ProgressForm
6 /// Required designer variable.
8 private System.ComponentModel.IContainer components = null;
11 /// Clean up any resources being used.
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
29 private void InitializeComponent()
31 this.labelMessage = new System.Windows.Forms.Label();
32 this.progressBar1 = new System.Windows.Forms.ProgressBar();
33 this.buttonCancel = new System.Windows.Forms.Button();
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...";
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;
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);
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";
77 this.ResumeLayout(false);
84 private System.Windows.Forms.Label labelMessage;
85 private System.Windows.Forms.ProgressBar progressBar1;
86 private System.Windows.Forms.Button buttonCancel;