make form background color transparent

  • Thread starter Thread starter Cc
  • Start date Start date
Hi,
I do not understand this what is the connection between a (web) form and a
border style?
Cor
 
Hello,

Cor said:
I do not understand this what is the connection between a
(web) form and a border style?

Web form?!

Regards,
Herfried K. Wagner
 
Hello,

Cc said:
how do I make form background colour transparent
when I set border style to none?

Have a look at the form's Region property or its TransparencyKey
property.

HTH,
Herfried K. Wagner
 
Hi Cor,

Cor said:
Can I set on a window form border style is none?

Set its FormBorderStyle property to None.
Is that true then opacity=0% works too on nt based systems.

Regions are supported since Windows 95, nevertheless, transparency using
the TransparencyKey property is AFAIK only supported on Windows
2000/XP/2003.

Regards,
Herfried K. Wagner
 
Hello,

Cor said:
Thanks learned again something

If you want to create a form with a simple irregular shape (round
borders or something like this), I would create a region (for example
from a GraphicsPath) and set the form's Region property to this region.

Regards,
Herfried K. Wagner
 
Back
Top