1

Well, I know how to set the transparent key,

but if i click the transparent region, it clicks through the form. is it possible to disabling click through?

hmm.. I think this question is similar as C# Winforms Transparent Control allowing Clickthrough

but i do not understand the answer, what value should i change to 1???

Community
  • 1
  • 1
mik4n
  • 63
  • 7
  • Why are you trying to confuse the user? She can see something to click on, whatever is underneath your window. But clicking on it won't work? The answer is no. Although it got pretty broken in Aero. – Hans Passant Jul 17 '12 at 11:00

1 Answers1

0

Opacity. Which controls general transparency of the form and it's only see-through, not click-through (unless 0 is used).

However, your form will be (very faintly) visible using that method.

It's a bit more complex to make only a region of the form transparent this way, though.

Joey
  • 344,408
  • 85
  • 689
  • 683
  • hmm.. I forgot about the Opacity property.. Thank you for reminding me. I cannot create the effect that I wanted with this property, but I can make the similar one. – mik4n Jul 17 '12 at 09:45