vote up 1 vote down star

Hi

Trying to dig into the win32 api from my WPF application (which just runs through the systray).

When clicking on the systray icon, I present the user with a contextmenu, which gains focus over whatever window was topmost.

I want to get a handle to that window (the one, that just lost focus) and have tried with different approaches using

GetForeGroundWindow()
GetTopWindow()
GetDesktopWindow()

To no end however. I'm currently considering iterating through all processes, to get the MainWindowHandles and checking the z-order of each and every window.

But I reckoned that there's an easier/smarter way; simply just one I cannot google or recall from my old Petzold tome.

Another way would be for my systray menu not to gain focus when activated?

Thanks!

flag

2 Answers

vote up 1 vote down check

You could get the topmost window before opening the menu, regardless of the menu item the user will eventually choose.

Then, if you need the topmost window, you could just use the value you got before opening the menu.

link|flag
Of course! Trying to find the focus event to override, but currently just making the check with a DispatcherTimer. – Chrysaor Mar 11 at 9:51
vote up 0 vote down

I don't think there is anything simpler than your described z-index iteration. Your systray menu has to get focus, because otherwise people won't be able to use it (for example, with keyboard). And if it gets focus, then it becomes the foreground window, so the old foreground window is left without any distinction from any other inacitve window in the system. Truly, the z-index check IMHO is the only way.

link|flag

Your Answer

Get an OpenID
or

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