Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application I want to drag a particular user control into desktop that creates a new window with the dropped control (Something similar to visual studio 2010 (implemented using wpf) tab items or google chrome tabs). As far as I know we can only drag drop file object to desktop and not the user control. Is there any way to achieve this? is there any control available for this purpose?

Thanks in Advance.

share|improve this question

1 Answer

I had to do a something similar. What I did to make this work, was create a new window when my mouse left the original window rather than waiting until the mouse button was released.

share|improve this answer

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.