vote up 0 vote down star

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.

I'm also using an Infragistics Tabbed MDI Manager, so I'm not sure if that's affecting it.

flag

1 Answer

vote up 1 vote down check

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.

  • MDIForm.AllowDrop is set to true?
  • Is the object you're trying to drag serializable?
  • Try the DragEnter event instead of DragOver

As a last resort: if everything else fails, try contacting Infragistics Support.

link|flag

Your Answer

Get an OpenID
or

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