Example #1
0
 private void btnAlterar_Click(object sender, EventArgs e)
 {
     ArrayList arrPerson = new ArrayList();
     arrPerson.Add(grdPerson.CurrentRow.Cells[0].Value);
     arrPerson.Add(grdPerson.CurrentRow.Cells[1].Value);
     arrPerson.Add(grdPerson.CurrentRow.Cells[2].Value);
     arrPerson.Add(grdPerson.CurrentRow.Cells[3].Value);
     arrPerson.Add(grdPerson.CurrentRow.Cells[4].Value);
     PersonDetail personDetail = new PersonDetail(arrPerson, "alterar");
     personDetail.ShowDialog();
 }
Example #2
0
 private void btnIncluir_Click(object sender, EventArgs e)
 {
     PersonDetail personDatail = new PersonDetail("incluir");
     personDatail.ShowDialog();
 }