Invalidating and updating
Wpf GridControl provides two sets of internal content update methods. They are invalidation and update methods. Examples: Cell.Update() / Cell.Invalidate() or Row.Update() / Row.Invalidate(). The main difference between these methods is that Invalidate methods update text in a grid cell or in cells of a single row. In other words, DataTemplate that display content of a specific cell get a notification to update graphical content. Meanwhile, Update methods inform GridControl that a cell value has changed and that the grid has to check cell filtering, grouping and blinking conditions and to move a row to required position if sorting is used. Let's note that Cell.Update() method is indirectly called on notification from INotifyPropertyChanged or IBindingList interfaces.
Headers and columns contain only Invalidate methods that request column or cell content update without impact on internal content position in the grid.
A list of elements that can be invalidated or updated is presented below:
Back to Wpf GridControl features