private void CarregarMateriais() { if (string.IsNullOrEmpty(tbPesquisa.Text)) { materiais = MaterialModel.CarregarTodos(); } else { materiais = MaterialModel.Pesquisar(tbPesquisa.Text); } lvwCargos.ItemsSource = materiais; tbPesquisa.Focus(); }