Hello all.
Let me start off by saying that I am completely new with WPF (this is my first project and I have been working in it for less than a week). With that being said, please be easy on me!
I have three list boxes that are being bound to ObservableCollections from a LINQ queries. In the beginning, everything is fine, all three are populated correctly. My client needs to drag and drop selections from one listbox to another. I also have this working, but when I do the drag and drop, the new selection is placed at the bottom of the listbox instead of being sorted alphabetically with the existing items.
How can I sort the listbox at runtime through code behind after the drag and drop operation is complete.
Thanks!