Example #1
0
        private void pbEditar_Click(object sender, EventArgs e)
        {
            AutorViewEditar vw = new AutorViewEditar(((int)gridAutor.CurrentRow.Cells[0].Value), (string)gridAutor.CurrentRow.Cells[1].Value);

            vw.ShowDialog();
            atualizaTela();
        }
Example #2
0
        private void pbCriar_Click(object sender, EventArgs e)
        {
            AutorViewEditar vw = new AutorViewEditar();

            vw.ShowDialog();
            atualizaTela();
        }