-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExecutionProgressForm.Designer.cs
More file actions
124 lines (118 loc) · 5.85 KB
/
Copy pathExecutionProgressForm.Designer.cs
File metadata and controls
124 lines (118 loc) · 5.85 KB
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
namespace StatTag
{
partial class ExecutionProgressForm
{
/// <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()
{
System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExecutionProgressForm));
this.lblDescription = new System.Windows.Forms.Label();
this.pbrProgress = new System.Windows.Forms.ProgressBar();
this.cmdCancel = new System.Windows.Forms.Button();
tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.AutoSize = true;
tableLayoutPanel1.ColumnCount = 1;
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
tableLayoutPanel1.Controls.Add(this.lblDescription, 0, 0);
tableLayoutPanel1.Controls.Add(this.pbrProgress, 0, 1);
tableLayoutPanel1.Controls.Add(this.cmdCancel, 0, 2);
tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.Padding = new System.Windows.Forms.Padding(3);
tableLayoutPanel1.RowCount = 3;
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
tableLayoutPanel1.Size = new System.Drawing.Size(430, 116);
tableLayoutPanel1.TabIndex = 3;
//
// lblDescription
//
this.lblDescription.AutoSize = true;
this.lblDescription.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblDescription.Location = new System.Drawing.Point(6, 3);
this.lblDescription.Margin = new System.Windows.Forms.Padding(3, 0, 3, 10);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(418, 17);
this.lblDescription.TabIndex = 2;
this.lblDescription.Text = "Running your code";
//
// pbrProgress
//
this.pbrProgress.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.pbrProgress.Location = new System.Drawing.Point(13, 34);
this.pbrProgress.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.pbrProgress.Name = "pbrProgress";
this.pbrProgress.Size = new System.Drawing.Size(403, 30);
this.pbrProgress.TabIndex = 1;
//
// cmdCancel
//
this.cmdCancel.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.cmdCancel.AutoSize = true;
this.cmdCancel.Location = new System.Drawing.Point(171, 78);
this.cmdCancel.Margin = new System.Windows.Forms.Padding(3, 10, 3, 4);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(87, 27);
this.cmdCancel.TabIndex = 0;
this.cmdCancel.Text = "Cancel";
this.cmdCancel.UseVisualStyleBackColor = true;
this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
//
// ExecutionProgressForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.CausesValidation = false;
this.ClientSize = new System.Drawing.Size(430, 116);
this.ControlBox = false;
this.Controls.Add(tableLayoutPanel1);
this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ExecutionProgressForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "StatTag - Running your code...";
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button cmdCancel;
private System.Windows.Forms.ProgressBar pbrProgress;
private System.Windows.Forms.Label lblDescription;
}
}