My binding is set this way:
<Grid Name="motherGrid">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<DataGrid ItemsSource="{Binding}" Name="LoadGrid" Grid.Row="0"></DataGrid>
<Button Grid.Row="1" Click="Button_Click_1">Hello</Button>
</Grid>
In code behind, I set the datacontext to the VM object which contains an ienumerable list of loads
motherGrid.DataContext = VM.Loads;
When a button is pressed, the AddLoad method is called
public void AddLoad(Load load)
{
Loads.Add(load);
if (CollectionChanged != null)
CollectionChanged(this, new NotifyCollectionChangedEventArgs(new NotifyCollectionChangedAction()));
}
However, the CollectionChanged event is indeed null, so the event isnever triggered. How can I add the DataGrid to the CollectionChanged event?
ObservableCollection<Load>these events would work without any custom coding. – Kevin DiTraglia Nov 21 '12 at 18:57