How do you setup a handler for the dragover/dragdrop events in the MDI client area? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T15:49:25Zhttp://stackoverflow.com/feeds/question/305665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/305665/how-do-you-setup-a-handler-for-the-dragover-dragdrop-events-in-the-mdi-client-are0How do you setup a handler for the dragover/dragdrop events in the MDI client area?Bearddo2008-11-20T15:32:51Z2008-11-20T16:16:51Z
<p>Using C# and the .Net framework 2.0. I have an MDI application and need to handle dragover/dragdrop events. I have a list docked to the left on my application and would like to be able to drag an item from the list and drop it in the MDI client area and have the correct MDI child for the item open. I can't seem to figure out where to attach the handler. I've tried attaching to the main form's events and the MdiClient that is part of the form, but neither event handler seems to get called when I expect them to. </p>
<p>I'm also using an Infragistics Tabbed MDI Manager, so I'm not sure if that's affecting it.</p>
http://stackoverflow.com/questions/305665/how-do-you-setup-a-handler-for-the-dragover-dragdrop-events-in-the-mdi-client-are/305863#3058631Answer by Vincent Van Den Berghe for How do you setup a handler for the dragover/dragdrop events in the MDI client area?Vincent Van Den Berghe2008-11-20T16:16:51Z2008-11-20T16:16:51Z<p>I have an application that implements the Infragistics MDI DockManager (not Tabbed MDI), but I think those are very similar. It should work when you handle the MDI form events.</p>
<ul>
<li>MDIForm.AllowDrop is set to true?</li>
<li>Is the object you're trying to drag serializable?</li>
<li>Try the DragEnter event instead of DragOver</li>
</ul>
<p>As a last resort: if everything else fails, try contacting Infragistics Support.</p>