UWP 重启App

今天看见了阿迪王的博客,写到了重启App自身的代码,微软终于在16299加进来了

其实就加上一句话

await CoreApplication.RequestRestartAsync(string.Empty);

需要引用

using Windows.ApplicationModel.Core;

函数原型

        //
        // 摘要:
        //     重启应用。
        //
        // 参数:
        //   launchArguments:
        //     要传递到已重启实例的参数。
        //
        // 返回结果:
        //     重启请求的状态。
        [RemoteAsync]
        public static IAsyncOperation<AppRestartFailureReason> RequestRestartAsync(string launchArguments);

还可以传递参数,详情 How to Restart your App Programmatically

 

参考 :

http://edi.wang/post/2017/12/1/restart-uwp-app-programmatically

How to Restart your App Programmatically

    原文作者:星期八再娶你
    原文地址: https://www.cnblogs.com/hupo376787/p/7993625.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞