How to design a cool semi transparent splash screen?
You set your semi transparent background image to BackgroundImage
property of the form. Then set a BackColor
to your form, and set the TransparencyKey
property of the form to the same color you set for your forms BackColor
. Then remove the borders of the form by changing FormBorderStyle
property of the form to None
. That will do it.