-
Notifications
You must be signed in to change notification settings - Fork 1
/
Progress.Designer.cs
125 lines (119 loc) · 5.7 KB
/
Progress.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
namespace certificate_generator
{
partial class Progress
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.bar = new System.Windows.Forms.ProgressBar();
this.progress_lbl = new System.Windows.Forms.Label();
this.feed_back_lbl = new System.Windows.Forms.Label();
this.finish_btn = new System.Windows.Forms.Button();
this.cncl_btn = new System.Windows.Forms.Button();
this.bg_worker = new System.ComponentModel.BackgroundWorker();
this.SuspendLayout();
//
// bar
//
this.bar.Location = new System.Drawing.Point(52, 43);
this.bar.Name = "bar";
this.bar.Size = new System.Drawing.Size(542, 23);
this.bar.TabIndex = 0;
//
// progress_lbl
//
this.progress_lbl.AutoSize = true;
this.progress_lbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.progress_lbl.Location = new System.Drawing.Point(622, 50);
this.progress_lbl.Name = "progress_lbl";
this.progress_lbl.Size = new System.Drawing.Size(26, 16);
this.progress_lbl.TabIndex = 1;
this.progress_lbl.Text = "0/0";
//
// feed_back_lbl
//
this.feed_back_lbl.AutoSize = true;
this.feed_back_lbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.feed_back_lbl.Location = new System.Drawing.Point(49, 86);
this.feed_back_lbl.Name = "feed_back_lbl";
this.feed_back_lbl.Size = new System.Drawing.Size(82, 16);
this.feed_back_lbl.TabIndex = 2;
this.feed_back_lbl.Text = "Feed back : ";
//
// finish_btn
//
this.finish_btn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.finish_btn.Location = new System.Drawing.Point(541, 104);
this.finish_btn.Name = "finish_btn";
this.finish_btn.Size = new System.Drawing.Size(122, 35);
this.finish_btn.TabIndex = 3;
this.finish_btn.Text = "Finish";
this.finish_btn.UseVisualStyleBackColor = true;
this.finish_btn.Click += new System.EventHandler(this.button1_Click);
//
// cncl_btn
//
this.cncl_btn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cncl_btn.Location = new System.Drawing.Point(379, 104);
this.cncl_btn.Name = "cncl_btn";
this.cncl_btn.Size = new System.Drawing.Size(122, 35);
this.cncl_btn.TabIndex = 4;
this.cncl_btn.Text = "Cancel";
this.cncl_btn.UseVisualStyleBackColor = true;
this.cncl_btn.Click += new System.EventHandler(this.cncl_btn_Click);
//
// bg_worker
//
this.bg_worker.WorkerReportsProgress = true;
this.bg_worker.WorkerSupportsCancellation = true;
this.bg_worker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bg_worker_DoWork);
this.bg_worker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bg_worker_ProgressChanged);
this.bg_worker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bg_worker_RunWorkerCompleted);
//
// Progress
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(702, 167);
this.ControlBox = false;
this.Controls.Add(this.cncl_btn);
this.Controls.Add(this.finish_btn);
this.Controls.Add(this.feed_back_lbl);
this.Controls.Add(this.progress_lbl);
this.Controls.Add(this.bar);
this.Name = "Progress";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Progress";
this.Load += new System.EventHandler(this.Progress_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ProgressBar bar;
private System.Windows.Forms.Label progress_lbl;
private System.Windows.Forms.Label feed_back_lbl;
private System.Windows.Forms.Button finish_btn;
private System.Windows.Forms.Button cncl_btn;
private System.ComponentModel.BackgroundWorker bg_worker;
}
}