10

my C# winform application needs put itself in standby mode during time other application runs in true fullscreen mode (not only maximized), like video games, video movies, powerpoint.

I need a method to detect if currently there is other application in fullscreen.

Is there a possibility to register to events which will fire when other application enters/exits fullscreen?

for both needs, I'll appreciate to have code snippets.

mlev
  • 181
  • 7
  • 2
    How do you define "fullscreen"? – Gabe Sep 10 '10 at 16:35
  • A "TRUE-full-screen-mode" covers the whole desktop with a black background and the application sits in the middle of the screen. I MUST ignore just "maximize-to-full-screen" mode which is totally different - just maximizing application area to maximum. and as I'm not so familiar, I'd appreciate some code snippet which I can start from it. – mlev Sep 11 '10 at 06:45

1 Answers1

1

According to this question "full screen mode" is not that special, just create the right type of window and the OS will treat it as full screen. Once you know that, you can see here how to detect such windows.

Community
  • 1
  • 1