淡入淡出启动画面
在 C# Windows 窗体应用程序中。 我有一个启动屏幕,其中有一些在后台发生的多线程进程。 我想做的是,当我最初显示启动屏幕时,我希望它看起来“淡入”。 然后,一旦所有进程完成,我希望它看起来好像启动屏幕“淡出”。 我正在使用 C# 和 .NET 2.0。 谢谢。
In a C# windows forms application. I have a splash screen with some multi-threaded processes happening in the background. What I would like to do is when I display the splash screen initially, I would like to have it appear to "fade in". And then, once all the processes finish, I would like it to appear as though the splash screen is "fading out". I'm using C# and .NET 2.0. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用计时器来修改 表单.不透明度级别。
You could use a timer to modify the Form.Opacity level.
您可以使用窗体的不透明度属性来更改淡入度(0.0 到 1.0 之间)。
You can use the Opacity property for the form to alter the fade (between 0.0 and 1.0).
使用 Opacity 属性时必须记住它的类型为 double,其中 1.0 是完全不透明度,0.0 是完全透明。
When using Opacity property have to remember that its of type double, where 1.0 is complete opacity, and 0.0 is completely transparency.