Exemplo n.º 1
0
 private async Task FillRoleBox()
 {
     RoleBox.ClearValue(ItemsControl.ItemsSourceProperty);
     RoleBox.DisplayMemberPath = "Name";
     RoleBox.SelectedValuePath = "RoleId";
     RoleBox.ItemsSource       = await authCore.GetHRRolesAsync();
 }