-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmProgress.Designer.cs
More file actions
113 lines (107 loc) · 5.02 KB
/
frmProgress.Designer.cs
File metadata and controls
113 lines (107 loc) · 5.02 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
namespace Winstruct
{
partial class frmProgress
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProgress));
this.progress = new System.Windows.Forms.PictureBox();
this.lblInfo = new System.Windows.Forms.Label();
this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
((System.ComponentModel.ISupportInitialize)(this.progress)).BeginInit();
this.SuspendLayout();
//
// progress
//
this.progress.BackColor = System.Drawing.Color.White;
this.progress.Image = ((System.Drawing.Image)(resources.GetObject("progress.Image")));
this.progress.Location = new System.Drawing.Point(12, 12);
this.progress.Name = "progress";
this.progress.Size = new System.Drawing.Size(32, 32);
this.progress.TabIndex = 17;
this.progress.TabStop = false;
this.progress.UseWaitCursor = true;
//
// lblInfo
//
this.lblInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblInfo.Location = new System.Drawing.Point(72, 12);
this.lblInfo.Name = "lblInfo";
this.lblInfo.Size = new System.Drawing.Size(213, 30);
this.lblInfo.TabIndex = 18;
this.lblInfo.Text = "Please wait while your structure is being created...";
//
// shapeContainer1
//
this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
this.shapeContainer1.Name = "shapeContainer1";
this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
this.rectangleShape1});
this.shapeContainer1.Size = new System.Drawing.Size(302, 58);
this.shapeContainer1.TabIndex = 19;
this.shapeContainer1.TabStop = false;
this.shapeContainer1.UseWaitCursor = true;
//
// rectangleShape1
//
this.rectangleShape1.BorderColor = System.Drawing.Color.SteelBlue;
this.rectangleShape1.BorderWidth = 3;
this.rectangleShape1.Location = new System.Drawing.Point(2, 2);
this.rectangleShape1.Name = "rectangleShape1";
this.rectangleShape1.Size = new System.Drawing.Size(295, 54);
this.rectangleShape1.UseWaitCursor = true;
//
// frmProgress
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.ClientSize = new System.Drawing.Size(302, 58);
this.ControlBox = false;
this.Controls.Add(this.lblInfo);
this.Controls.Add(this.progress);
this.Controls.Add(this.shapeContainer1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmProgress";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "frmProgress";
this.UseWaitCursor = true;
((System.ComponentModel.ISupportInitialize)(this.progress)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox progress;
private System.Windows.Forms.Label lblInfo;
private Microsoft.VisualBasic.PowerPacks.ShapeContainer shapeContainer1;
private Microsoft.VisualBasic.PowerPacks.RectangleShape rectangleShape1;
}
}