码迷,mamicode.com
首页 > Windows程序 > 详细

WPF启动屏幕SplashScreen

时间:2020-05-19 20:51:51      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:cti   show   info   summary   namespace   mic   err   tar   static   

SplashScreen类为WPF应用程序提供启动屏幕。

 

方法一:设置图片属性

1. 添加启动图片到项目中

2. 设置图片属性的Build Action为SplashScreen

技术图片

 

方法二:编写代码

1. 在App.xaml.cs中重写OnStartUp方法:

using System;
using System.Windows;

namespace StaticLanguageSelect
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
        protected override void OnStartup(StartupEventArgs e)
        {
            //根据图片路径,实例化启动图片
            SplashScreen splashScreen = new SplashScreen("\\3-2.png");
            splashScreen.Show(false);

            //上面Show()方法中设置为true时,程序启动完成后启动图片就会自动关闭,
            //设置为false时,启动图片不会自动关闭,需要使用下面一句设置显示时间,例如5s
            splashScreen.Close(new TimeSpan(0,0,5));

            base.OnStartup(e);
        }
    }
}

  

WPF启动屏幕SplashScreen

标签:cti   show   info   summary   namespace   mic   err   tar   static   

原文地址:https://www.cnblogs.com/mr-hu2009/p/12919024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!