vote up 3 vote down star
1

Hi,

Been trying to find a working implementation of a WPF listview (or listbox) where you can order items by dragging them up or down.

I have found a few, but none really works, for example this one http://www.codeproject.com/KB/WPF/ListViewDragDropManager.aspx?msg=2765618#xx2765618xx stops working once you have list where you need to scroll down to get to the last items.

Why is Drag&Drop so hard in WPF? Does anybody know a working control?

flag

80% accept rate

4 Answers

vote up 3 vote down check

Drag&drop is not SO hard, really :) try reading this http://www.beacosta.com/blog/?p=53 post on drag&drop.

link|flag
vote up 1 vote down

Also check out this article on CodeProject!

It is not as full featured as Josh & Bea's implementation but it is very simple to use...

This implementation rely on attached properties (Attached behaviour)

Source

<ListBox src:DragAndDrop.DragEnabled="true"/>

Target

<ListBox src:DragAndDrop.DropEnabled="true"/>
link|flag
vote up 1 vote down

I've been struggling with WPF drag and drop for a while now and decided to just bite the bullet and create a framework for it.

You can find the code here: http://code.google.com/p/gong-wpf-dragdrop/

I’d love to get some feedback on this, hopefully it will solve your problem!

link|flag
I will take a look at it... but it might take some time, thank you – TimothyP Nov 9 at 6:28
vote up 0 vote down

@Neverrav thank you, I'll look into that :-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.