I want to override the default selection and active row appearance while doing drag and drop.
I tried this:
With Grid.DisplayLayout.Override .ActiveRowAppearance.BackColor = Color.PaleGoldenrod .SelectedRowAppearance.BackColor = Color.PaleGoldenrod End With
And then added this:
Grid.Rows.Refresh(RefreshRow.RefreshDisplay)
This is all before calling Grid.DoDragDrop(...)
Grid.DoDragDrop(...)
Hi,
So what is your question?
Sorry for the ambiguity, the code I mentioned above didn't work. Is there anything I might have missed to have it update? Or perhaps a better way than I'm trying to do it?