-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmGenero.cs
189 lines (163 loc) · 6.07 KB
/
FrmGenero.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
using AulaAEDB01.Windows.Model;
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;
namespace AulaAEDB01.Windows
{
public partial class FrmGenero : Form
{
ToolStripMenuItem _mnu;
ToolStripMenuItem _mnu2;
private bool Incluir = true;
public FrmGenero(ToolStripMenuItem mnu, ToolStripMenuItem mnu2)
{
InitializeComponent();
_mnu = mnu;
_mnu2 = mnu2;
}
private void CarregaGrid()
{
GrdItens.AutoGenerateColumns = false;
GrdItens.DataSource = Genero.ListarTodos();
}
private void FrmGenero_Load(object sender, EventArgs e)
{
CarregaGrid();
}
private void FrmGenero_FormClosed(object sender, FormClosedEventArgs e)
{
//((FrmMenu)this.MdiParent).MnuGenero.Enabled = true;
//((FrmMenu)this.MdiParent).MnSGenero.Enabled = true;
_mnu.Enabled = true;
_mnu2.Enabled = true;
((FrmMenu)this.MdiParent).LblDisplay.Text = "";
}
private void FrmGenero_Activated(object sender, EventArgs e)
{
((FrmMenu)this.MdiParent).LblDisplay.Text = "Cadastro de Gêneros";
}
private void BtnFechar_Click(object sender, EventArgs e)
{
this.Close();
}
private bool ValidaControles()
{
int Codigo;
//if (TxtCodigo.Text.Trim() == "")
//{
// MessageBox.Show("O campo código é de preenchimento obrigatório.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
// TxtCodigo.Focus();
// return false;
//}
if (TxtNome.Text.Trim() == "")
{
MessageBox.Show("O campo nome é de preenchimento obrigatório.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigo.Focus();
return false;
}
//else if (int.TryParse(TxtCodigo.Text, out Codigo) == false)
//{
// MessageBox.Show("O campo código não é numérico.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
// TxtCodigo.Focus();
// return false;
//}
return true;
}
private void LimpaControles()
{
TxtCodigo.Text = "";
TxtNome.Text = "";
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void dataGridView1_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
{
}
private void BtnSalvar_Click(object sender, EventArgs e)
{
if (Incluir)
{
//Incluir um gênero na Lista
if (ValidaControles())
{
Genero oGenero = new Genero
{
//Codigo = int.Parse(TxtCodigo.Text),
Nome = TxtNome.Text
};
// Genero.IncluirGeneroStatico(oGenero);
try
{
oGenero.Incluir();
CarregaGrid();
LimpaControles();
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao incluir o gênero: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigo.Focus();
}
}
}
else
{
// Altera o Gênero selecionado.
Genero oGenero = new Genero
{
Codigo = int.Parse(TxtCodigo.Text),
Nome = TxtNome.Text
};
try
{
Genero.Alterar(oGenero);
CarregaGrid();
LimpaControles();
Incluir = true;
TxtCodigo.Enabled = true;
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao alterar o gênero: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigo.Focus();
}
}
}
private void GrdItens_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (GrdItens.Rows[e.RowIndex].DataBoundItem != null)
{
//BUSCA O OBJETO DE DADO DA LINHA SELECIONADA
Genero objSelecionado = (Genero)GrdItens.Rows[e.RowIndex].DataBoundItem;
//VERIFICA SE CLICOU NO BOTÃO ALTERAR OU EXCLUIR.
if (GrdItens.Columns[e.ColumnIndex].Name == "BtnAlterar")
{
//Clicou no botão alterar.
TxtCodigo.Text = objSelecionado.Codigo.ToString();
TxtNome.Text = objSelecionado.Nome;
TxtCodigo.Enabled = false;
TxtNome.Focus();
Incluir = false;
}
else if (GrdItens.Columns[e.ColumnIndex].Name == "BtnExcluir")
{
//Clicou no botão excluir.
if (MessageBox.Show("Confirme a exclusão.", ProductName, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
objSelecionado.Excluir();
CarregaGrid();
}
}
}
}
private void TxtCodigo_TextChanged(object sender, EventArgs e)
{
}
}
}