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(); }
private void btnIncluir_Click(object sender, EventArgs e) { PersonDetail personDatail = new PersonDetail("incluir"); personDatail.ShowDialog(); }