Does this control support drag and drop functionality and if so could you povide me with some sample code?
There is no specific built-in support for drag and drop in the XamCarouselListBox. If you elaborate on your specific scenario perhaps someone on the forum can chime in with how they have used core WPF functionality to achieve the same or simlar behavior.
Joe Modica
in my carousal i've got a bunch of selectable images which i would like to be able to pick individually and drop on another part of the application.
I've managed to implement Drag and Drop functionality using this control but ended up with a problem which i am not sure how to fix. To implement the Drag & Drop I overrode the PreviewMouseLeftButtonDown, PreviewMouseMove and PreviewMouseLeftButtonUp but by doing so the carousel navigation stops working. Any idea what i can do to solve this?
I had a look however the XamCarouselListBox is completely different then XamDataGrid, XamDataCarousel and XamDataPresenter.
Can you help with specific sample?
You can find a link with a sample in this forum thread : (http://community.infragistics.com/forums/p/36929/213407.aspx#213407)
Can you provide me the code snippets on how you have achieved this funcationality?
I found what the issue was. In the PreviewMouseLeftButtonUp I was setting the Mouse capture to null.
System.Windows.Input.Mouse.Capture(null);