I have Datagrid binding to a ObservableCollection as a source, data grid cells is allowed the user to change the values, the problem when I change the cells values the ObservableCollection do not update
Here's my Datagrid code :
<DataGrid.Columns>
<DataGridTextColumn Header="Item" Binding="{Binding Item.ItemName,Mode=TwoWay}" Width="100" IsReadOnly="False" />
<DataGridTextColumn Header="Price" Binding="{Binding SalePrice,Mode=TwoWay}" Width="100" IsReadOnly="False" />
<DataGridTextColumn Header="Qtn" Binding="{Binding Quantity,Mode=TwoWay}" Width="100" IsReadOnly="False" />
<DataGridTextColumn Header="Totla" Binding="{Binding Total,Mode=TwoWay}" Width="100" IsReadOnly="False" />
</DataGrid.Columns>
any suggestions