up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

Assuming this is WinForms... – Noldorin Jun 21 '09 at 11:27
@Noldorin // Yes – Moon Jun 21 '09 at 11:29
feedback

1 Answer

up vote 1 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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