I have a datagrid bound to a Players property:
<DataGrid HorizontalAlignment="Left" SelectedItem="{Binding CurrentPlayer}" Height="374" Margin="121,22,0,0" RowHeaderWidth="0" VerticalAlignment="Top" Width="836" ItemsSource="{Binding Players}" AutoGenerateColumns="false" IsReadOnly="True" SelectionMode="Single" IsEnabled="{Binding Editing, Converter={StaticResource InverseBooleanConverter}}" Grid.RowSpan="2" Grid.ColumnSpan="2">
This Players property is defined like this:
public List<Player> Players
{
get { return repository.Players.OrderBy(x => x.Firstname).ToList(); }
}
The repository contains a DBSet from EF.
When I add a player, I use this code:
private void SaveExecute(object parameter)
{
repository.SavePlayer(currentPlayer);
Editing = false;
}
What I'd like to do now is simple: when the new player is created, the datagrid should refresh. It's bound to the Players property, but no setter is ever used and so calling RaisePropertyChange is not possible there.
I'm stuck here. How to correctly bind it so that when the SavePlayer()-method is called, the datagrid would update and so the new player is shown?
The easiest solution I've found is calling RaisePropertyChanged("Players"); in the SaveExecute() method:
private void SaveExecute(object parameter)
{
repository.SavePlayer(currentPlayer);
RaisePropertyChanged("Players");
Editing = false;
}
But... is this allowed or is this something you shouldn't do? Should you only call RaiseProperyChanged in setters of properties of would this be fine too?
Thanks