Example #1
0
        private void btnNovoDepartamento_Click(object sender, System.EventArgs e)
        {
            FormNovoDepartamento departamento = new FormNovoDepartamento();

            departamento.ShowDialog();
            CarregarLista();
        }
Example #2
0
        private void btnEditarDepartamento_Click(object sender, System.EventArgs e)
        {
            int id = int.Parse(listaDepartamentos.SelectedItems[0].SubItems[0].Text);

            FormNovoDepartamento departamento = new FormNovoDepartamento(id);

            departamento.ShowDialog();
            CarregarLista();
        }