-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormRecuperarConta.Designer.cs
More file actions
114 lines (103 loc) · 5.3 KB
/
FormRecuperarConta.Designer.cs
File metadata and controls
114 lines (103 loc) · 5.3 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
namespace NOC_Actions
{
partial class FormRecuperarConta
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && components != null)
components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.panel1 = new System.Windows.Forms.Panel();
this.label_titulo = new System.Windows.Forms.Label();
this.label_usuario = new System.Windows.Forms.Label();
this.label_divisor = new System.Windows.Forms.Label();
this.textBox_usuario = new System.Windows.Forms.TextBox();
this.btnRecuperar = new System.Windows.Forms.Button();
this.btnCancelar = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.SuspendLayout();
// panel1
this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.panel1.Controls.Add(this.label_titulo);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(390, 30);
this.panel1.TabIndex = 0;
// label_titulo
this.label_titulo.AutoSize = true;
this.label_titulo.Font = new System.Drawing.Font("Segoe UI", 14.25F);
this.label_titulo.ForeColor = System.Drawing.Color.White;
this.label_titulo.Location = new System.Drawing.Point(3, 2);
this.label_titulo.Name = "label_titulo";
this.label_titulo.TabIndex = 0;
this.label_titulo.Text = "Recuperação de Credencial";
// label_usuario
this.label_usuario.AutoSize = true;
this.label_usuario.Font = new System.Drawing.Font("Segoe UI", 12F);
this.label_usuario.Location = new System.Drawing.Point(35, 55);
this.label_usuario.Name = "label_usuario";
this.label_usuario.TabIndex = 1;
this.label_usuario.Text = "Usuário";
// textBox_usuario
this.textBox_usuario.Location = new System.Drawing.Point(110, 52);
this.textBox_usuario.Name = "textBox_usuario";
this.textBox_usuario.Size = new System.Drawing.Size(246, 25);
this.textBox_usuario.TabIndex = 2;
// label_divisor
this.label_divisor.AutoSize = true;
this.label_divisor.Font = new System.Drawing.Font("Segoe UI", 12F);
this.label_divisor.ForeColor = System.Drawing.Color.Gainsboro;
this.label_divisor.Location = new System.Drawing.Point(1, 88);
this.label_divisor.Name = "label_divisor";
this.label_divisor.TabIndex = 3;
this.label_divisor.Text = "______________________________________________________";
// btnCancelar
this.btnCancelar.Location = new System.Drawing.Point(218, 103);
this.btnCancelar.Name = "btnCancelar";
this.btnCancelar.Size = new System.Drawing.Size(79, 29);
this.btnCancelar.TabIndex = 4;
this.btnCancelar.Text = "Cancelar";
this.btnCancelar.UseVisualStyleBackColor = true;
this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
// btnRecuperar
this.btnRecuperar.Location = new System.Drawing.Point(299, 103);
this.btnRecuperar.Name = "btnRecuperar";
this.btnRecuperar.Size = new System.Drawing.Size(79, 29);
this.btnRecuperar.TabIndex = 5;
this.btnRecuperar.Text = "Recuperar";
this.btnRecuperar.UseVisualStyleBackColor = true;
this.btnRecuperar.Click += new System.EventHandler(this.btnRecuperar_Click);
// FormRecuperarConta
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(390, 145);
this.Controls.Add(this.btnRecuperar);
this.Controls.Add(this.btnCancelar);
this.Controls.Add(this.label_divisor);
this.Controls.Add(this.textBox_usuario);
this.Controls.Add(this.label_usuario);
this.Controls.Add(this.panel1);
this.Font = new System.Drawing.Font("Segoe UI", 9.75F);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "FormRecuperarConta";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label_titulo;
private System.Windows.Forms.Label label_usuario;
private System.Windows.Forms.Label label_divisor;
private System.Windows.Forms.TextBox textBox_usuario;
private System.Windows.Forms.Button btnRecuperar;
private System.Windows.Forms.Button btnCancelar;
}
}