-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmAutor.cs
181 lines (153 loc) · 5.7 KB
/
FrmAutor.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
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.Model;
namespace AulaAEDB01.Windows
{
public partial class FrmAutor : Form
{
ToolStripMenuItem _mnuA;
ToolStripMenuItem _mnu2A;
private bool IncluirA = true;
public FrmAutor(ToolStripMenuItem mnuA, ToolStripMenuItem mnu2A)
{
InitializeComponent();
_mnuA = mnuA;
_mnu2A = mnu2A;
}
private void CarregaGrid()
{
GrdItensA.AutoGenerateColumns = false;
GrdItensA.DataSource = Autor.ListarTodos();
}
private void FrmAutor_Load(object sender, EventArgs e)
{
CarregaGrid();
}
private void BtnFecharA_Click(object sender, EventArgs e)
{
this.Close();
Application.Exit();
}
private void FrmAutor_FormClosed_1(object sender, FormClosedEventArgs e)
{
//((FrmMenu)this.MdiParent).MnuGenero.Enabled = true;
//((FrmMenu)this.MdiParent).MnSGenero.Enabled = true;
_mnuA.Enabled = true;
_mnu2A.Enabled = true;
((FrmMenu)this.MdiParent).LblDisplay.Text = "";
}
private void FrmAutor_Activated_1(object sender, EventArgs e)
{
((FrmMenu)this.MdiParent).LblDisplay.Text = "Cadastro de Autor";
}
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 (TxtNomeA.Text.Trim() == "")
{
MessageBox.Show("O campo nome é de preenchimento obrigatório.", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoA.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 LimpaControlesA()
{
TxtNomeA.Text = "";
TxtCodigoA.Text = "";
}
private void btnSalvarA_Click(object sender, EventArgs e)
{
if (IncluirA)
{
//Incluir um gênero na Lista
if (ValidaControles())
{
Autor oAutor = new Autor
{
//Codigo = int.Parse(TxtCodigo.Text),
NomeA = TxtNomeA.Text
};
// Genero.IncluirGeneroStatico(oGenero);
try
{
oAutor.IncluirA();
CarregaGrid();
LimpaControlesA();
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao incluir o autor: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoA.Focus();
}
}
}
else
{
//Altera o Autor Selecionado
Autor oAutor = new Autor
{
CodigoA = int.Parse(TxtCodigoA.Text),
NomeA = TxtNomeA.Text
};
try
{
Autor.Alterar(oAutor);
CarregaGrid();
LimpaControlesA();
IncluirA = true;
TxtCodigoA.Enabled = true;
}
catch (Exception ex)
{
MessageBox.Show($"Um erro ocorreu ao alterar o Autor: {ex.Message}", ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
TxtCodigoA.Focus();
}
}
}
private void GrdItensA_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (GrdItensA.Rows[e.RowIndex].DataBoundItem != null)
{
Autor objSelecionadoA = (Autor)GrdItensA.Rows[e.RowIndex].DataBoundItem;
if (GrdItensA.Columns[e.ColumnIndex].Name == "BtnAlterarA")
{
//Clicou no botão Alterar
TxtCodigoA.Text = objSelecionadoA.CodigoA.ToString();
TxtNomeA.Text = objSelecionadoA.NomeA;
TxtCodigoA.Enabled = false;
TxtNomeA.Focus();
IncluirA = false;
}
else if (GrdItensA.Columns[e.ColumnIndex].Name == "BtnExcluirA")
{
//Clicou no botão excluir.
if (MessageBox.Show("Confirme a exclusão.", ProductName, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
objSelecionadoA.Excluir();
CarregaGrid();
}
}
}
}
}
}