Splash-screen with alpha channels transparency/opa

2019-02-27 01:30发布

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

2条回答
狗以群分
2楼-- · 2019-02-27 02:07
不美不萌又怎样
3楼-- · 2019-02-27 02:11

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.

查看更多
登录 后发表回答