vote up 1 vote down star

How to implement a splash-screen using an image with alpha channels transparency/opacity in WinForms?

flag

64% accept rate

2 Answers

vote up 0 vote down check

Take a look at Per Pixel Alpha Blend in C#

link|flag
vote up 0 vote down

Depends on what kind of shape your image is. Is it something you can draw using code? If so you could set the forms draw region to a shape, like this:

yourForm.Region = new Region(someShape);

The shape can for example be a polygon with the same shape as your image.

link|flag
I would like to use any PNG image with 8-bit alpha transparency. Could you remember some earlier Adobe Acrobat Reader? – Shurup May 12 at 9:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.