-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathProgressDialog.Designer.cs
77 lines (71 loc) · 2.93 KB
/
ProgressDialog.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
namespace SM64DSe
{
partial class ProgressDialog
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
this.lblAction = new System.Windows.Forms.Label();
this.pbProgress = new System.Windows.Forms.ProgressBar();
this.SuspendLayout();
//
// lblAction
//
this.lblAction.AutoSize = true;
this.lblAction.Location = new System.Drawing.Point(12, 9);
this.lblAction.Name = "lblAction";
this.lblAction.Size = new System.Drawing.Size(303, 13);
this.lblAction.TabIndex = 0;
this.lblAction.Text = "current action here blah blah blah blah blah blah blah blah blah";
//
// pbProgress
//
this.pbProgress.Location = new System.Drawing.Point(12, 25);
this.pbProgress.MarqueeAnimationSpeed = 1;
this.pbProgress.Name = "pbProgress";
this.pbProgress.Size = new System.Drawing.Size(326, 23);
this.pbProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.pbProgress.TabIndex = 1;
//
// ProgressDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(350, 62);
this.ControlBox = false;
this.Controls.Add(this.pbProgress);
this.Controls.Add(this.lblAction);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ProgressDialog";
this.Text = "text here";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ProgressDialog_FormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblAction;
private System.Windows.Forms.ProgressBar pbProgress;
}
}