Ok, I've got a bindingsource which represents a dataset. That bindingsource is bound to a listbox. This works exactly as intended, in that it is populated with all the names from the specified column. Not a problem.
I've got a second listbox, bound to a different bindingsource1, which is itself bound to the bindingsource1, but using a datamember representing one of the relationships to a different table in the dataset. The upshot of this is that when I click an item in the first list, the second list displays all related stuff.
Nothing new, or indeed complex here, it's pretty standard stuff and works exactly as intended.
However, I'm trying to implement drag and drop functionality on the first list box. I've added an event handler for mousedown. Inside this, I'm calling
DoDragDrop(current, DragDropEffects.Copy | DragDropEffects.Move);
where current is set to the current object from bindingsource1.Current.Row["Name"].
Now, this is where it gets strange. Even though the listbox itself is updated correctly (in that the newly selected item is highlighted, index and item all return as expected, the newly selected item/ index) the bindingsource1.Current has NOT been updated, and indeed, the second list box still shows the data relevant to the previously selected item.
Using the arrow keys to move up and down causes the listbox highlight to change as expected, and also the data in listbox2 to be updated as expected.
Commenting out the DoDragDrop line and everything seems to work exactly as intended.
From this I can only infer that DoDragDrop is somehow preventing certain events from firing, but I've no idea why/ if this is desired behavior/ how to dirty work round it/ how to work round it properly...
Help me Obi-Wan Kenobi, you're my only hope...
edit: I've created a simplified implementation of the problem: dropbox.com/s/qxfsvr28ftojdax/BindingDragDrop.zip Comment out the dodragdrop and the labels at the top change, put the dodragdrop in and it doesn't even register... –