-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmProjeto.Designer.cs
135 lines (129 loc) · 6.2 KB
/
FrmProjeto.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
namespace WaterSaving
{
partial class FrmProjeto
{
/// <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.cbxNomeProjeto = new System.Windows.Forms.ComboBox();
this.btnEntrar = new System.Windows.Forms.Button();
this.btnSair = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.cbxCategoria = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// cbxNomeProjeto
//
this.cbxNomeProjeto.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.cbxNomeProjeto.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.cbxNomeProjeto.FormattingEnabled = true;
this.cbxNomeProjeto.Location = new System.Drawing.Point(163, 24);
this.cbxNomeProjeto.Name = "cbxNomeProjeto";
this.cbxNomeProjeto.Size = new System.Drawing.Size(472, 21);
this.cbxNomeProjeto.TabIndex = 1;
this.cbxNomeProjeto.SelectedIndexChanged += new System.EventHandler(this.cbxNomeProjeto_SelectedIndexChanged);
this.cbxNomeProjeto.TextChanged += new System.EventHandler(this.cbxNomeProjeto_TextChanged);
//
// btnEntrar
//
this.btnEntrar.Image = global::WaterSaving.Properties.Resources.ok;
this.btnEntrar.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
this.btnEntrar.Location = new System.Drawing.Point(259, 98);
this.btnEntrar.Name = "btnEntrar";
this.btnEntrar.Size = new System.Drawing.Size(95, 39);
this.btnEntrar.TabIndex = 3;
this.btnEntrar.Text = "Entrar";
this.btnEntrar.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
this.btnEntrar.UseVisualStyleBackColor = true;
this.btnEntrar.Click += new System.EventHandler(this.btnEntrar_Click);
//
// btnSair
//
this.btnSair.Image = global::WaterSaving.Properties.Resources.Sair;
this.btnSair.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
this.btnSair.Location = new System.Drawing.Point(375, 98);
this.btnSair.Name = "btnSair";
this.btnSair.Size = new System.Drawing.Size(95, 39);
this.btnSair.TabIndex = 4;
this.btnSair.Text = "Sair";
this.btnSair.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
this.btnSair.UseVisualStyleBackColor = true;
this.btnSair.Click += new System.EventHandler(this.btnSair_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(89, 52);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(69, 17);
this.label2.TabIndex = 77;
this.label2.Text = "Categoria";
//
// cbxCategoria
//
this.cbxCategoria.FormattingEnabled = true;
this.cbxCategoria.Location = new System.Drawing.Point(163, 51);
this.cbxCategoria.Name = "cbxCategoria";
this.cbxCategoria.Size = new System.Drawing.Size(259, 21);
this.cbxCategoria.TabIndex = 2;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(44, 24);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(114, 17);
this.label3.TabIndex = 78;
this.label3.Text = "Nome do Projeto";
//
// FrmProjeto
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(678, 168);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.cbxCategoria);
this.Controls.Add(this.btnSair);
this.Controls.Add(this.btnEntrar);
this.Controls.Add(this.cbxNomeProjeto);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmProjeto";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "WaterSaving - Projeto";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cbxNomeProjeto;
private System.Windows.Forms.Button btnEntrar;
private System.Windows.Forms.Button btnSair;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox cbxCategoria;
private System.Windows.Forms.Label label3;
}
}