This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
version 5.1.1515.21376 I am multi-selecting rows in the datagrid (using shift-click). DataGrid:HighlightedItemChanged does not have an up to data DataGrid.SelectedItems. SelectedItems has what was previously selected. What would you suggest for notification that the selected rows have changed? Here is my DataGrid:
|
|
|
Hello You can cast the DataGrid.SelectedItems property into an INotifyCollectionChanged, and then attach an event handler to the CollectionChanged event. Note that this will raise an event for every item that is added or removed from the collection. This will be made more convenient in the next version. Jason Fauchelle |
|