Beispiel #1
0
        private void BtnLocalizar_Click(object sender, RoutedEventArgs e)
        {
            var pesquisa = new frmPesquisaCategoria();

            pesquisa.ShowDialog();

            CategoriaPesquisa = pesquisa.categoriaId;
            // Se vier 0, então a pessoa fechou sem escolher nenhum item. Então ele não vai fazer nada.
            if (CategoriaPesquisa != 0)
            {
                Categoria categoria = categoriaDAO.BuscarCategoriaPeloId(CategoriaPesquisa);
                txtCodigo.Text = categoria.Id.ToString();
                txtNome.Text   = categoria.Nome;

                MudarOperacao(2);
            }
        }