Hi Guys
I am trying to make the windows Form BackColor Transparent but each time I try to set the BackColor to Transparent property I am encountering with following error message
Property Value is not Valid
Control does not support transparent background colors.
I also tried to add following code into , InitializeComponent() like :
private void InitializeComponent()
{
this.BackColor = System.Drawing.Color.Transparent;
} but I recived the following message
Control does not support transparent background colors.
I already tried to set both BackColor and TransparencyKey to same color like:
BackColor = Color.Lime;
TransparencyKey = Color.Lime; but this is not what I am looking for.Can you please let me know how I can change the BackColor to transparent statues?