I\'m looking to know every time the user has edited a content of my DataGrid\'s cell. There\'s CellEditEnding event, but its called before any changes were made to the colle
If you need to know whether the edited DataGrid item belongs to a particular collection, you could do something like this in the DataGrid's RowEditEnding event:
private void dg_RowEditEnding(object sender, DataGridRowEditEndingEventArgs e)
{
// dg is the DataGrid in the view
object o = dg.ItemContainerGenerator.ItemFromContainer(e.Row);
// myColl is the observable collection
if (myColl.Contains(o)) { /* item in the collection was updated! */ }
}
You can use UpdateSourceTrigger=PropertyChanged
on the binding of the property member for the datagrid. This will ensure that when CellEditEnding is fired the update has already been reflected in the observable collection.
See below
<DataGrid SelectionMode="Single"
AutoGenerateColumns="False"
CanUserAddRows="False"
ItemsSource="{Binding Path=Items}" // This is your ObservableCollection
SelectedIndex="{Binding SelectedIndexStory}">
<e:Interaction.Triggers>
<e:EventTrigger EventName="CellEditEnding">
<cmd:EventToCommand PassEventArgsToCommand="True" Command="{Binding EditStoryCommand}"/> // Mvvm light relay command
</e:EventTrigger>
</e:Interaction.Triggers>
<DataGrid.Columns>
<DataGridTextColumn Header="Description"
Binding="{Binding Name, UpdateSourceTrigger=PropertyChanged}" /> // Name is property on the object i.e Items.Name
</DataGrid.Columns>
</DataGrid>
UpdateSourceTrigger = PropertyChanged will change the property source immediately whenever the target property changes.
This will allow you to capture edits to items as adding an event handler to the observable collection changed event does not fire for edits of objects in the collection.
You should just add an event handler on your ObservableCollection
's CollectionChanged
event.
Code snippet:
_listObsComponents.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(ListCollectionChanged);
// ...
void ListCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
/// Work on e.Action here (can be Add, Move, Replace...)
}
when e.Action
is Replace
, this means that an object of your list has been replaced. This event is of course triggered after the changes were applied
Have fun!