Exemple #1
0
        private void dELETARToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Filme filme = new Filme();

            filme.Id            = Convert.ToInt32(dgvFilmes.CurrentRow.Cells[0].Value.ToString());
            filme.Diretor       = dgvFilmes.CurrentRow.Cells[3].Value.ToString();
            filme.Duracao       = Convert.ToInt32(dgvFilmes.CurrentRow.Cells[5].Value.ToString());
            filme.Classificacao = dgvFilmes.CurrentRow.Cells[2].Value.ToString();
            filme.Nome          = dgvFilmes.CurrentRow.Cells[1].Value.ToString();
            filme.Estudio       = dgvFilmes.CurrentRow.Cells[4].Value.ToString();
            ManterFilme manutencao = new ManterFilme(3, this, filme);

            manutencao.ShowDialog();
        }
Exemple #2
0
        private void iNSERIRToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ManterFilme manutencao = new ManterFilme(1, this, null);

            manutencao.ShowDialog();
        }