private void btAdicionar_Click(object sender, EventArgs e) { CadastroFuncao tela = new CadastroFuncao(); tela.FormClosed += Tela_FormClosed; tela.MdiParent = this.MdiParent; tela.Show(); }
private void button3_Click(object sender, EventArgs e) { if (dgFuncao.SelectedRows.Count == 0) { MessageBox.Show("Selecione uma função"); return; } long funcaoId = (long)dgFuncao.SelectedRows[0].Cells[0].Value; CadastroFuncao tela = new CadastroFuncao(); tela.FormClosed += Tela_FormClosed; tela.FuncaoId = funcaoId; tela.MdiParent = this.MdiParent; tela.Show(); }