This question is locked. New answers and comments are not allowed.
Hello,
I'm fighting with Drag and Drop but it seems to win!
I've got this strange behavior... I save the dragged item to the DB (I'm implementing a sort of favorites system)
If I bind the listview's itemsource to the data I retrieved from the DB no items are displayed when I drop the item
If I comment this, everything works fine, but I've no the data from the DB...If I've them uncommented then I refresh I see the data correctly
Thanks in advance
Paolo
I'm fighting with Drag and Drop but it seems to win!
I've got this strange behavior... I save the dragged item to the DB (I'm implementing a sort of favorites system)
If I bind the listview's itemsource to the data I retrieved from the DB no items are displayed when I drop the item
| private void client_GetFavoritesListCompleted(object sender, IFWebLight.IFPosizioni.GetFavoritesListCompletedEventArgs e) |
| { |
| if (e.Error == null) |
| { |
| lfmv = GetFavoriteModelViewFromWS(e.Result); |
| DragListBox.ItemsSource = lfmv; |
| } |
| } |
If I comment this, everything works fine, but I've no the data from the DB...If I've them uncommented then I refresh I see the data correctly
Thanks in advance
Paolo