-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmUsuario.cs
206 lines (177 loc) · 6.79 KB
/
FrmUsuario.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using AulaAEDB01.Windows.Control;
using AulaAEDB01.Windows.Model;
namespace AulaAEDB01.Windows
{
public partial class FrmUsuario : Form
{
ToolStripMenuItem _mnu;
ToolStripMenuItem _mnu2;
private bool Incluir = true;
public FrmUsuario(ToolStripMenuItem mnu, ToolStripMenuItem mnu2)
{
InitializeComponent();
_mnu = mnu;
_mnu2 = mnu2;
}
private void CarregaGrid()
{
GrdItensU.AutoGenerateColumns = false;
GrdItensU.DataSource = Usuario.ListarTodos();
}
private void FrmUsuario_Load(object sender, EventArgs e)
{
CarregaGrid();
CboTipo.DataSource = Model.Tipo.ListarTodos();
CboTipo.ValueMember = "CodigoT";
CboTipo.DisplayMember = "TipoU";
}
private void FrmUsuario_FormClosed(object sender, FormClosedEventArgs e)
{
//((FrmMenu)this.MdiParent).MnuUsuario.Enabled = true;
//((FrmMenu)this.MdiParent).MnSUsuario.Enabled = true;
_mnu.Enabled = true;
_mnu2.Enabled = true;
((FrmMenu)this.MdiParent).LblDisplay.Text = "";
}
private void FrmUsuario_Activated(object sender, EventArgs e)
{
((FrmMenu)this.MdiParent).LblDisplay.Text = "Cadastro de Usuarios";
}
private void BtnFecharU_Click(object sender, EventArgs e)
{
this.Close();
}
private bool ValidaControles()
{
int CodigoU;
//if (TxtCodigoU.Text.Trim() == "")
//{
// MessageBox.Show("O campo código é de preenchimento obrigatório.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
// TxtCodigoU.Focus();
// return false;
//}
if (TxtNomeU.Text.Trim() == "")
{
MessageBox.Show("O campo NomeU é de preenchimento obrigatório.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoU.Focus();
return false;
}
//else if (int.TryParse(TxtCodigoU.Text, out CodigoU) == false)
//{
// MessageBox.Show("O campo código não é numérico.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
// TxtCodigoU.Focus();
// return false;
//}
return true;
}
private void LimpaControles()
{
TxtCodigoU.Text = "";
TxtNomeU.Text = "";
TxtEmail.Text = "";
TxtSenha.Text = "";
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void dataGridView1_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
{
}
private void BtnSalvarU_Click(object sender, EventArgs e)
{
if (Incluir)
{
//Incluir um Usuario na Lista
if (ValidaControles())
{
Usuario oUsuario = new Usuario
{
//CodigoU = int.Parse(TxtCodigoU.Text),
NomeU = TxtNomeU.Text,
EmailU = TxtEmail.Text,
TipoU = CboTipo.Text,
SenhaU = TxtSenha.Text,
};
// Usuario.IncluirUsuarioStatico(oUsuario);
try
{
oUsuario.IncluirU();
CarregaGrid();
LimpaControles();
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao incluir o Usuario: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoU.Focus();
}
}
}
else
{
// Altera o Usuario selecionado.
Usuario oUsuario = new Usuario
{
CodigoU = int.Parse(TxtCodigoU.Text),
NomeU = TxtNomeU.Text,
EmailU = TxtEmail.Text,
TipoU = CboTipo.Text,
SenhaU = TxtSenha.Text
};
try
{
Usuario.AlterarU(oUsuario);
CarregaGrid();
LimpaControles();
Incluir = true;
TxtCodigoU.Enabled = true;
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao alterar o Usuario: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoU.Focus();
}
}
}
private void GrdItensU_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (GrdItensU.Rows[e.RowIndex].DataBoundItem != null)
{
//BUSCA O OBJETO DE DADO DA LINHA SELECIONADA
Usuario objSelecionado = (Usuario)GrdItensU.Rows[e.RowIndex].DataBoundItem;
//VERIFICA SE CLICOU NO BOTÃO ALTERAR OU EXCLUIR.
if (GrdItensU.Columns[e.ColumnIndex].Name == "BtnAlterarU")
{
//Clicou no botão alterar.
TxtCodigoU.Text = objSelecionado.CodigoU.ToString();
TxtNomeU.Text = objSelecionado.NomeU;
TxtEmail.Text = objSelecionado.EmailU;
TxtSenha.Text = objSelecionado.SenhaU;
TxtCodigoU.Enabled = false;
TxtNomeU.Focus();
Incluir = false;
}
else if (GrdItensU.Columns[e.ColumnIndex].Name == "BtnExcluirU")
{
//Clicou no botão excluir.
if (MessageBox.Show("Confirme a exclusão.", ProductName, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
objSelecionado.ExcluirU();
CarregaGrid();
}
}
}
}
private void GrdItensU_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
}
}