In the XamGrid, how can I respond in code-behind to the event when columns are re-ordered using the Column Chooser dialog?
There doesn't seem to be any specific appropriate event that gets raised, but I may be missing something.
Hi,
We don't expose any specific events.
However, i suppose you could listen to the xamGrid's Columns' CollectionChanged event.
When you move a column the event will raise for remove/add actions.
this.grid1.Columns.CollectionChanged += new NotifyCollectionChangedEventHandler(Columns_CollectionChanged);
I hope this helps,
-SteveZ