UWP 重启App

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UWP 重启App相关的知识,希望对你有一定的参考价值。

原文: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



以上是关于UWP 重启App的主要内容,如果未能解决你的问题,请参考以下文章

重启/重启 UWP 应用

win10 uwp 重启软件

UWP 代理组件重启/停止 DLL

如何在UWP App中创建信息丰富的Toast通知

每次重启后都会添加片段(Android)

在 UWP 应用中创建使用调试 App Service (应用服务)