启动画面计时器

发布于 2025-01-05 01:49:45 字数 284 浏览 0 评论 0原文

我实际上尝试向我的 WPF 应用程序添加启动屏幕。这很简单:

SplashScreen s = new SplashScreen("/Images/Agrar.png");
s.Show(true);

我的问题是,我希望启动屏幕显示大约 10 秒,但我的应用程序不需要这么长时间来加载。

所以我考虑了 Timer 类并尝试了一些,但我不知道如何将它与启动屏幕结合起来。 有更好的解决方案吗?它如何与定时器一起工作?因为我没有找到一个选项来说明计时器运行时应该发生什么。

I actually try to add a Splash Screen to my WPF application. It is quite easy:

SplashScreen s = new SplashScreen("/Images/Agrar.png");
s.Show(true);

My problem is, that I want the Splash Screen to show about 10sec, but my Application doesn´t need so long to load.

So I thought about the Timer class and tried a bit, but I don´t know how to combine it with a Splash Screen.
Is there a better solution? How does it work with Timer? Because I didn´t find a option to say, what should happen while the Timer is running.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

活雷疯 2025-01-12 01:49:45

您可以尝试让主线程休眠 10 秒(如果启动画面可见,用户无论如何都不会使用您的应用程序),或者在一段时间内淡出启动画面:

    SplashScreen splash = new SplashScreen("/Images/Agrar.png");
    splash.Show(false);
    Thread.Sleep(10000);
    splash.Close( TimeSpan.FromSeconds(20)); //fade out over 20 seconds

You can try putting your main thread to sleep for 10 seconds (if splash is visible, users won't use your app anyway), or fade out the splash over a period of time:

    SplashScreen splash = new SplashScreen("/Images/Agrar.png");
    splash.Show(false);
    Thread.Sleep(10000);
    splash.Close( TimeSpan.FromSeconds(20)); //fade out over 20 seconds
少跟Wǒ拽 2025-01-12 01:49:45

最好的方法和使用 API 是

  SplashScreen splash = new SplashScreen("splashscreen.jpg");
  splash.Show(false);
  splash.Close(TimeSpan.FromMilliseconds(2));
  InitializeComponent();

The best way and using the API is

  SplashScreen splash = new SplashScreen("splashscreen.jpg");
  splash.Show(false);
  splash.Close(TimeSpan.FromMilliseconds(2));
  InitializeComponent();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文