views:

109

answers:

1

I need to know if a specific window in my application is on top of all the other windows (including other applications). I tried the TopLevel property but it tells if it is Toplevel within my application only, I would need to know related to other applications also. How can it be done, preferring not using windows API?

+1  A: 

Maybe this will help from MSDN GetTopWindow

Paul G.
Thanks, of course this can solve my problem, but I prefer a solution without using windows API.
pablito