private void ListTiposUsuarios() { try { TipoUsuarioDataGrid.ItemsSource = tipoUsuario.GetAll(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }
private void ListTipoUsuarios() { TipoUsuarioCombox.ItemsSource = tipoUsuario.GetAll(); TipoUsuarioCombox.DisplayMemberPath = "Nombre"; TipoUsuarioCombox.SelectedValuePath = "Id"; //TipoUsuarioCombox.SelectedIndex = 1; }