DesktopListBox DragReorderRows

Is there a good way to be able to detect that a listbox has been manually reordered?
I’d like to perform some actions post reorder. I recognize that I can add the DragReorderRows event however that indicates that the row is about to reorder.
I’d like to detect it after this without having to set a timer or something to call a function after I return false from the event.

Any ideas?

1 Like

the more “reusable” way would be to subclass desktoplistbox, and make your own event that fires exactly when you want. you would use a timer etc… like you said, but you would do this once, and then you could reuse it in all your future apps.