Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to achieve the following and was looking for a sample/tutorial but couldn't really find anything:

I have C# Winforms application, which has multiple Forms within the same process. I'd like to be able to drag & drop items within and between forms and would like to provide some custom painted visualization of the item being dragged.

For example, my IM app shows the effect that I'd like to achieve: alt text

Thanks,

Tom

share|improve this question

1 Answer

up vote 1 down vote accepted

You actually physically have to drag a control with the mouse.

For example: http://blogs.msdn.com/b/adamroot/archive/2008/02/19/shell-style-drag-and-drop-in-net-wpf-and-winforms.aspx

share|improve this answer
Can you drag the control out of its window ? – Homam Oct 27 '10 at 12:00
No, but you could add the control to a form and drag said form. – AndrewVos Oct 27 '10 at 12:10
You mean drag a Form then? that's the way I was thinking about. – Bolu Oct 27 '10 at 13:11
I looked at the samples and tried the sample code and this does exactly what I was looking for. The only issue is, that if you drag it to certain parts of the screen, it crashes and leaves artifacts on my screen. So, it will need some work. – Thomas J. Frey Oct 27 '10 at 13:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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