-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmIdioma.cs
189 lines (163 loc) · 6.1 KB
/
FrmIdioma.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 FrmIdioma : Form
{
ToolStripMenuItem _mnu;
ToolStripMenuItem _mnu2;
private bool Incluir = true;
public FrmIdioma(ToolStripMenuItem mnu, ToolStripMenuItem mnu2)
{
InitializeComponent();
_mnu = mnu;
_mnu2 = mnu2;
}
private void CarregaGrid()
{
GrdItensI.AutoGenerateColumns = false;
GrdItensI.DataSource = Idioma.ListarTodos();
}
private void FrmIdioma_Load(object sender, EventArgs e)
{
CarregaGrid();
}
private void FrmIdioma_FormClosed(object sender, FormClosedEventArgs e)
{
//((FrmMenu)this.MdiParent).MnuIdioma.Enabled = true;
//((FrmMenu)this.MdiParent).MnSIdioma.Enabled = true;
_mnu.Enabled = true;
_mnu2.Enabled = true;
((FrmMenu)this.MdiParent).LblDisplay.Text = "";
}
private void FrmIdioma_Activated(object sender, EventArgs e)
{
((FrmMenu)this.MdiParent).LblDisplay.Text = "Cadastro de Idioma";
}
private void BtnFecharI_Click(object sender, EventArgs e)
{
this.Close();
}
private bool ValidaControles()
{
int CodigoI;
//if (TxtCodigoI.Text.Trim() == "")
//{
// MessageBox.Show("O campo código é de preenchimento obrigatório.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
// TxtCodigoI.Focus();
// return false;
//}
if (TxtNomeI.Text.Trim() == "")
{
MessageBox.Show("O campo Nome é de preenchimento obrigatório.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoI.Focus();
return false;
}
//else if (int.TryParse(TxtCodigoI.Text, out CodigoI) == false)
//{
// MessageBox.Show("O campo código não é numérico.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
// TxtCodigoI.Focus();
// return false;
//}
return true;
}
private void LimpaControles()
{
TxtCodigoI.Text = "";
TxtNomeI.Text = "";
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void dataGridView1_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
{
}
private void BtnSalvarI_Click(object sender, EventArgs e)
{
if (Incluir)
{
//Incluir um gênero na Lista
if (ValidaControles())
{
Idioma oIdioma = new Idioma
{
//CodigoI = int.Parse(TxtCodigoI.Text),
NomeI = TxtNomeI.Text
};
// Idioma.IncluirIdiomaStatico(oIdioma);
try
{
oIdioma.Incluir();
CarregaGrid();
LimpaControles();
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao incluir o idioma: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoI.Focus();
}
}
}
else
{
// Altera o Gênero selecionado.
Idioma oIdioma = new Idioma
{
CodigoI = int.Parse(TxtCodigoI.Text),
NomeI = TxtNomeI.Text
};
try
{
Idioma.Alterar(oIdioma);
CarregaGrid();
LimpaControles();
Incluir = true;
TxtCodigoI.Enabled = true;
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao alterar o idioma: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoI.Focus();
}
}
}
private void GrdItensI_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (GrdItensI.Rows[e.RowIndex].DataBoundItem != null)
{
//BUSCA O OBJETO DE DADO DA LINHA SELECIONADA
Idioma objSelecionado = (Idioma)GrdItensI.Rows[e.RowIndex].DataBoundItem;
//VERIFICA SE CLICOU NO BOTÃO ALTERAR OU EXCLUIR.
if (GrdItensI.Columns[e.ColumnIndex].Name == "BtnAlterarI")
{
//Clicou no botão alterar.
TxtCodigoI.Text = objSelecionado.CodigoI.ToString();
TxtNomeI.Text = objSelecionado.NomeI;
TxtCodigoI.Enabled = false;
TxtNomeI.Focus();
Incluir = false;
}
else if (GrdItensI.Columns[e.ColumnIndex].Name == "BtnExcluirI")
{
//Clicou no botão excluir.
if (MessageBox.Show("Confirme a exclusão.", ProductName, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
objSelecionado.Excluir();
CarregaGrid();
}
}
}
}
private void LblNomeI_Click(object sender, EventArgs e)
{
}
}
}