-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmCarregamento.Designer.cs
102 lines (96 loc) · 4.29 KB
/
frmCarregamento.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
namespace Ocr
{
partial class frmCarregamento
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCarregamento));
this.lblEsperar = new System.Windows.Forms.Label();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.btnCancelar = new System.Windows.Forms.Button();
this.timer = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// lblEsperar
//
this.lblEsperar.AutoSize = true;
this.lblEsperar.Location = new System.Drawing.Point(233, 26);
this.lblEsperar.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblEsperar.Name = "lblEsperar";
this.lblEsperar.Size = new System.Drawing.Size(131, 17);
this.lblEsperar.TabIndex = 5;
this.lblEsperar.Text = "Espere Por Favor...";
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(16, 65);
this.progressBar.Margin = new System.Windows.Forms.Padding(4);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(536, 28);
this.progressBar.TabIndex = 4;
//
// btnCancelar
//
this.btnCancelar.Location = new System.Drawing.Point(237, 130);
this.btnCancelar.Margin = new System.Windows.Forms.Padding(4);
this.btnCancelar.Name = "btnCancelar";
this.btnCancelar.Size = new System.Drawing.Size(100, 28);
this.btnCancelar.TabIndex = 3;
this.btnCancelar.Text = "Cancelar";
this.btnCancelar.UseVisualStyleBackColor = true;
this.btnCancelar.Click += new System.EventHandler(this.Cancelar);
//
// timer
//
this.timer.Tick += new System.EventHandler(this.Timer);
//
// frmCarregamento
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(567, 167);
this.Controls.Add(this.lblEsperar);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.btnCancelar);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmCarregamento";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Carregamento";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FecharFormulario);
this.Load += new System.EventHandler(this.CarregarFormulario);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.Label lblEsperar;
internal System.Windows.Forms.ProgressBar progressBar;
internal System.Windows.Forms.Button btnCancelar;
internal System.Windows.Forms.Timer timer;
}
}