private void pbCriar_Click(object sender, EventArgs e) { var vw = new LivroViewEditar(); vw.ShowDialog(); atualizaTela(); }
private void pbEditar_Click(object sender, EventArgs e) { var livro = new LIVRO(); livro.id = (int)gridLivros.CurrentRow.Cells[0].Value; livro.titulo = (string)gridLivros.CurrentRow.Cells[1].Value; livro.fkAutor = (int)gridLivros.CurrentRow.Cells[2].Value; livro.isbn = (string)gridLivros.CurrentRow.Cells[3].Value; var vw = new LivroViewEditar(livro); vw.ShowDialog(); atualizaTela(); }