vote up 0 vote down star

When I have 2 apps open and one has the focus but I want to execute a command in the other app, it requires a click to regain focus and another to execute the command. Is there some good reason why I couldn't take focus on MouseOver? I'm working with a WPF app if that is pertinent. TIA

EDIT: Oddly enough the MouseOvers work without focus.

flag

I made a WPF app with a button on it just now, and I'm able to click the button whether or not the window has focus. Is your application an Office add-in? Is the command triggered by a button or some other method? – 280Z28 Oct 26 at 18:03
Yes, you're right and I'm feeling sheepish! I was going the other way (Wpf to AutoCAD) and was wondering what is the prevailing sentiment. Thanks! – Brad Oct 26 at 18:11

3 Answers

vote up 3 vote down check

I would not recommend doing this. This is not a standard way of working in Windows, so you will confuse your users. People are used to clicking into an application (or tabbing) to provide focus.

However, this is a configurable setting via the Accessability Tools in Windows. It can be enabled by choosing "Activate a window by hovering over it with the mouse" globally. Let your users specify this behavior if they want it.

link|flag
Thanks Reed (And everyone). Will do! – Brad Oct 26 at 17:54
vote up 2 vote down

The setting is configurable at a system-wide level. You should never ever override the user's current setting regarding this.

MS Windows Vista -- focus follows mouse (There's also a link on how to do it on XP.)

Edit: Normally, you can click a button on a form and both bring focus to the window and click it at the same time. The origins of the current setting "eating" the initial mouse click that brings focus to a window started as a fix to a bug in the Ribbon UI. The discussion is somewhere in this video: The Story of the Ribbon. Sorry I can't narrow it down more than that, but at least the video is a great insight and work watching - maybe you can send a message to Jensen Harris if you need a faster answer.

Edit 2: I just added a button to a WPF window, and I'm able to click it as long as I can see it - whether or not the window has focus.

link|flag
Outstanding video so far. As noted above, of course, you're right and thanks again! – Brad Oct 26 at 18:17
vote up 0 vote down

You can take focus on MouseOver manually

link|flag
Yes, but is there a good reason why I shouldn't? It seems like most apps behave this way. Is there a UI guideline that would make this rude/evil? – Brad Oct 26 at 17:45
2  
Its just a convention in windows. You can get utilities which make windows behave in a more X like fashion so that they grab focus automatically as you pass your mouse over them. – Jherico Oct 26 at 17:48
1  
well if it's your app for internal use only than just do what you want. If the program for public distribution i'd recommend to keep the defaults – Trickster Oct 26 at 17:49
1  
@Jherico: No need to get utilities - it's a configurable built-in Windows setting. – 280Z28 Oct 26 at 17:50
1  
well it maybe confusing. if a person move his mouse to click on 'Start' button but insted he actives your application it a bit wired. – Trickster Oct 26 at 17:54

Your Answer

Get an OpenID
or

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