vote up 2 vote down star
2

Is there a correct way in Windows Forms to flash a titlebar without having to drop to P/Invoking FlashWindow?

I'm using .NET 2.0 for compatibility and size reasons, so maybe I just missed the method because it's in newer versions of the .NET framework.

flag

80% accept rate

4 Answers

vote up 3 vote down check

No, I dont think so. PInvoking the FlashWindowEx method is the only way I think.

link|flag
vote up 2 vote down

MSDN: System.Windows.Form.Activate()

Activating a form brings it to the front if this is the active application, or it flashes the window caption if this is not the active application. The form must be visible for this method to have any effect.

Supported in: 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0

link|flag
vote up 0 vote down

@DrJokepu:

The .Activate() method, in 2.0, also brings the window to the front despite what the documentation says (i.e. other applications that are in front lose focus). Just tried this.

This is unfortunately exactly what I was trying to avoid.

link|flag
vote up 0 vote down

If you do find a ".NET" way of doing it, it will probably call p/invoke under the covers anyways.

This isn't Java, you don't have to be afraid of the operating system.

link|flag

Your Answer

Get an OpenID
or

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