private void CarregarCategorias() { if (string.IsNullOrEmpty(tbPesquisa.Text)) { categorias = CategoriaModel.CarregarTodos(); } else { categorias = CategoriaModel.Pesquisar(tbPesquisa.Text); } lvwCategorias.ItemsSource = categorias; tbPesquisa.Focus(); }