I have an unusual requirement. I have a WPF Datagrid with 5 rows. If I changed any cell under ColumnB, then all rows under ColumnB should be notified.
Right now after updating one cell under ColumnB, only that cell gets updated, and if I doubleclick on any other cell under ColumnB and get into the Edit Mode, ONLY THEN the new value is displayed.
How do I force a RaisePropertyChanged on all rows, if one row has been updated?
Usually I would do this in the codebehind containing the DataGrid’s ItemsSource
Here’s a rough example: