vote up 0 vote down star

In my .Net application, the user can drag rows from a grid on a main window into other application windows. Often the main application window is behind the window that the user is dragging into. By default, as soon as the mouse button is depressed on the main window, it gains focus, hiding the window that the user wants to drag onto.

Is there any way to prevent the active window from changing? It is awkward for a user to position the windows such that they can both drag from the main window onto the appropriate element of the active window.

Note that Windows Explorer handles this fine - the foreground Explorer window remains active in case the user wants to drag into it, until the mouse button is released.

flag

64% accept rate

2 Answers

vote up 0 vote down

It might make sense to make your application an MDI (multi document interface) application (like VisualStudio, Word, Excel, etc) where you have a "main" window which contains all the other windows separated by panes.

link|flag
vote up 0 vote down

You could override the CreateParams property and include the WS_EX_NOACTIVATE window style. But this is almost certainly not what you want. Most of the time, the user will expect the window to activate when she clicks on it. There's no good way to guess up front whether she clicks to make the window active or to start a D+D.

On top of that, the drop target window is just as likely to obscure the drop source as the other way around, forcing the user to activate the drop source window first to be able to start the drag.

The only good workaround for this is to use built-in Windows behavior. Click on the window to start the drag, move the mouse cursor over the Windows toolbar button to activate the window that needs to be the drop source.

link|flag
Thanks - I'll try that. Note that I do want typical Windows behavior if the user clicks, just not immediately on MouseDown. I'm after behavior consistent with Windows Explorer. – JoshL Apr 3 at 1:35

Your Answer

Get an OpenID
or

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