Form1.Designer.cs
4.88 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
using System.Windows.Forms;
namespace update_
{
partial class UpdateView
{
/// <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(UpdateView));
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.btOk = new System.Windows.Forms.Button();
this.btCancel = new System.Windows.Forms.Button();
this.lbinforDownload = new System.Windows.Forms.Label();
this.lbInforGeral = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(13, 95);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(463, 21);
this.progressBar1.TabIndex = 0;
//
// btOk
//
this.btOk.Enabled = false;
this.btOk.Location = new System.Drawing.Point(401, 173);
this.btOk.Name = "btOk";
this.btOk.Size = new System.Drawing.Size(75, 28);
this.btOk.TabIndex = 1;
this.btOk.Text = "OK";
this.btOk.UseVisualStyleBackColor = true;
this.btOk.Click += new System.EventHandler(this.btOk_Click);
//
// btCancel
//
this.btCancel.Location = new System.Drawing.Point(12, 173);
this.btCancel.Name = "btCancel";
this.btCancel.Size = new System.Drawing.Size(75, 28);
this.btCancel.TabIndex = 2;
this.btCancel.Text = "Cancelar";
this.btCancel.UseVisualStyleBackColor = true;
this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
//
// lbinforDownload
//
this.lbinforDownload.AutoSize = true;
this.lbinforDownload.Location = new System.Drawing.Point(13, 123);
this.lbinforDownload.Name = "lbinforDownload";
this.lbinforDownload.Size = new System.Drawing.Size(0, 13);
this.lbinforDownload.TabIndex = 3;
//
// lbInforGeral
//
this.lbInforGeral.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
this.lbInforGeral.ForeColor = System.Drawing.Color.Black;
this.lbInforGeral.Location = new System.Drawing.Point(13, 46);
this.lbInforGeral.Name = "lbInforGeral";
this.lbInforGeral.Size = new System.Drawing.Size(463, 20);
this.lbInforGeral.TabIndex = 4;
this.lbInforGeral.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// UpdateView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.HighlightText;
this.ClientSize = new System.Drawing.Size(488, 224);
this.Controls.Add(this.lbInforGeral);
this.Controls.Add(this.lbinforDownload);
this.Controls.Add(this.btCancel);
this.Controls.Add(this.btOk);
this.Controls.Add(this.progressBar1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "UpdateView";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Atualização do Vlibras ";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Button btOk;
private System.Windows.Forms.Button btCancel;
public string[] args;
private System.Windows.Forms.Label lbinforDownload;
private System.Windows.Forms.Label lbInforGeral;
}
}