I wanted to make my windows form transparent so removed the borders, controls and everything leaving only the forms box, then I tried to the BackColor and TransparencyKey to transparent but it didnt work out as BackColor would not accept transparent color. After searching around I found this at msdn:
SetStyle(ControlStyles.UserPaint, true);
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
this.BackColor = Color.Transparent;
this.TransparencyKey = BackColor;
Unhappyly it did not work either. I still get the grey or any other selected color background.
All I wanted to do is to have the windows form transparent so I could use a background image that would act as if it was my windows form.
I searched around here and saw many topics in regards opacity which is not what I am looking for and also saw some in regards this method I was trying but have not found an answer yet.
Hope anyone can light my path.
UPDATE:
image removed as problem is solved
The manner I have used before is to use a wild color (a color no one in their right mind would use) for the BackColor and then set the transparency key to that.
My solution was extremely close to Joel's (Not Etherton, just plain Joel):
I had drawn a splash screen (32bpp BGRA) with "transparent" background color in VS2013 and put a pictureBox in a form for display. For me a combination of above answers worked:
So make sure you use the same BackColor everywhere and set that color as the TransparencyKey.
A simple solution to get a transparent background in a windows form is to overwrite the
OnPaintBackground
method like this:(Notice that the
base.OnpaintBackground(e)
is removed from the function)I tried almost all of this. but still couldn't work. Finally I found it was because of 24bitmap problems. If you tried some bitmap which less than 24bit. Most of those above methods should work.
What works for me is using a specific color instead of the real ability of .png to represent transparency.
So, what you can do is take your background image, and paint the transparent area with a specific color (Magenta always seemed appropriate to me...).
Set the image as the Form's
BackgrounImage
property, and set the color as the Form'sTransparencyKey
. No need for changes in the Control's style, and no need for BackColor.I've tryed it right now and it worked for me...