Drag and drop in winapi - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T02:03:56Zhttp://stackoverflow.com/feeds/question/190596http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/190596/drag-and-drop-in-winapi2Drag and drop in winapiPeter Olsson2008-10-10T09:06:46Z2008-11-02T09:43:27Z
<p>I have a pure Winapi application that needs a few new features. One of them would best be implemented as two lists where you can drag-and-drop (multiple) elements between the lists. The new feature can be limited to a single dialog.</p>
<p>What would be the quickest way to implement this?
A few ideas:</p>
<ul>
<li>Pure Winapi (is it DetectDrag)</li>
<li>A separate MFC or .NET DLL that provides this one dialog</li>
<li>Embed the Microsoft WebBrowser Control and use JQuery</li>
</ul>
<p>Any of these options that should be avoided?<br />
Any better ideas?<br />
What is quickest to implement?<br />
Any pointers on how to get started?</p>
http://stackoverflow.com/questions/190596/drag-and-drop-in-winapi/190634#1906340Answer by Phil Wright for Drag and drop in winapiPhil Wright2008-10-10T09:25:12Z2008-10-10T09:25:12Z<p>Whichever method you are most familiar with is going to be the quickest. </p>
<p>Certainly it is very easy to do this in .NET Windows Forms. You can easily drag and drop items between ListBox entries by writing just a few lines of code. Look at somewhere like <a href="http://www.codeproject.com" rel="nofollow">CodeProject</a> for samples.</p>
http://stackoverflow.com/questions/190596/drag-and-drop-in-winapi/191011#1910115Answer by macbirdie for Drag and drop in winapimacbirdie2008-10-10T12:19:32Z2008-10-10T13:25:34Z<p>My advice would be that if the application is in pure winapi, keep it that way.</p>
<p>Starting a .NET framework runtime just for one dialog with draggable items is as bad as hosting a WebBrowser control and using JQuery for that one functionality - it's at least thedailywtf.com-worthy if you ask me (but then again, you're not asking me ;) ).</p>
<p>Otherwise you will put yourself (and potentially others) into some maintainability nightmare and the quickest way will become the most problematic one.</p>
<p><em>Edit:</em> Maybe <a href="http://www.codeproject.com/KB/list/jianghong.aspx?display=Print" rel="nofollow">those</a> <a href="http://www.codeproject.com/KB/list/dragdroplistviewreorder1.aspx?display=Print" rel="nofollow">two</a> articles will help in implementing drag-drop - they're about row reordering in ListViews, but will probably help in getting the idea.</p>
http://stackoverflow.com/questions/190596/drag-and-drop-in-winapi/191273#1912733Answer by Ben Straub for Drag and drop in winapiBen Straub2008-10-10T13:28:22Z2008-10-10T13:28:22Z<p>Raymond Chen wrote a series of blogposts on this topic not too long ago. Start <a href="http://blogs.msdn.com/oldnewthing/archive/2008/03/11/8080077.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/190596/drag-and-drop-in-winapi/194240#1942400Answer by zarck for Drag and drop in winapizarck2008-10-11T16:00:10Z2008-10-11T16:00:10Z<p>All the code is in MSDN in C and win32 api
Just copy-paste.</p>
<p>And see professional Win32 api ng
news://194.177.96.26/comp.os.ms-windows.programmer.win32
where all this has been discussed for decades...</p>
http://stackoverflow.com/questions/190596/drag-and-drop-in-winapi/256709#2567090Answer by Peter Olsson for Drag and drop in winapiPeter Olsson2008-11-02T09:43:27Z2008-11-02T09:43:27Z<p>A few notes after implementing this in Win32 api:</p>
<p>Drag and drop is not supported by the ListBox control. It has to be a ListView control.</p>
<p>This <a href="http://www.codeproject.com/KB/list/jianghong.aspx?display=Print" rel="nofollow">CodeProject article</a> is very good. (Thanks macbirdie)<br />
The MSDN section of <a href="http://msdn.microsoft.com/en-us/library/bb774737(VS.85).aspx" rel="nofollow">ListViews</a> is of course very useful.</p>