Drag and drop in winapi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:03:56Z http://stackoverflow.com/feeds/question/190596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/190596/drag-and-drop-in-winapi 2 Drag and drop in winapi Peter Olsson 2008-10-10T09:06:46Z 2008-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#190634 0 Answer by Phil Wright for Drag and drop in winapi Phil Wright 2008-10-10T09:25:12Z 2008-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#191011 5 Answer by macbirdie for Drag and drop in winapi macbirdie 2008-10-10T12:19:32Z 2008-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#191273 3 Answer by Ben Straub for Drag and drop in winapi Ben Straub 2008-10-10T13:28:22Z 2008-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#194240 0 Answer by zarck for Drag and drop in winapi zarck 2008-10-11T16:00:10Z 2008-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#256709 0 Answer by Peter Olsson for Drag and drop in winapi Peter Olsson 2008-11-02T09:43:27Z 2008-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>