vote up 2 vote down star
2

I made a panel and set it to fill the screen, now I can see the windows under it but I want it to be click through, meaning they could click a file or see a tool tip of another object through the transparency.

RE: This may be too obvious, but have you tried sending the panel to the back by right clicking and choosing "Send to Back"?

I mean like the desktop or firefox, not something within my project.

flag

37% accept rate
I'm not sure that is possible without bringing those objects into the foreground. What is the scenario you are trying to enable and maybe we can help you do that in an alternative manner. – spoon16 Sep 21 '08 at 21:32

2 Answers

vote up 7 vote down

Creating a top level form that is transparent is very easy. Just make it fill the screen, or required area, and define it to have a TransparenyKey color and BackColor of the same value.

Getting it to ignore the mouse is simple enough, you just need to override the WndProc and tell the WM_HITTEST that all mouse positions are to be treated as transparent. Thus causing the mouse to interact with whatever happens to be underneath the window. Something like this...

    protected override void WndProc(ref Message m)
    {
        if (m.Msg == (int)WM_NCHITTEST)
            m.Result = (IntPtr)HTTRANSPARENT;
        else
            base.WndProc(ref m);
    }
link|flag
vote up 0 vote down

If what you want is a hole through your window, set the TransparancyKey on your main form to some color (I chose Blue) and set the BackColor of the panel you want to click through to the same color. Build and run.

this.TransparencyKey = System.Drawing.Color.Blue;
this.panel1.BackColor = System.Drawing.Color.Blue;

When the program runs, you can click through the hole with no problems.

If you want your program to work as an overlay, that is, have an opaque image that you are allowed to click through, I don't have a solution.

link|flag

Your Answer

Get an OpenID
or

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