Exemplo n.º 1
0
        private void CarregarCategorias()
        {
            if (string.IsNullOrEmpty(tbPesquisa.Text))
            {
                categorias = CategoriaModel.CarregarTodos();
            }
            else
            {
                categorias = CategoriaModel.Pesquisar(tbPesquisa.Text);
            }

            lvwCategorias.ItemsSource = categorias;
            tbPesquisa.Focus();
        }