vote up 0 vote down star

Hi,

I am trying to create an application that makes a window (external to the app) transparent when it loses focus. Most of things (getting window id, seting transparent, etc.) would be easy, except one thing - how do I hook windows?

flag

Assuming this is WinForms... – Noldorin Jun 21 at 11:27
@Noldorin // Yes – terrani Jun 21 at 11:29

1 Answer

vote up 1 vote down check

You can use interop. Use SendMessage() function to send your window a custom message. The window can then call SetLayeredWindowAttributes() once your receive that message to change its transparency.

The other thing is you really should be able to make the window turn ITSELF transparent when it loses focus by listening for WM_KILLFOCUS

EDIT:

Latch onto the Deactivate and Activated events in C#.

    private void Form1_Deactivate( object sender, EventArgs e )
    {
      this.Opacity = 0.5 ;
    }

    private void Form1_Activated( object sender, EventArgs e )
    {
      this.Opacity = 1.0 ;
    }
link|flag

Your Answer

Get an OpenID
or

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