WP8.1StoreApp(WP8.1RT)---第三方启动_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > WP8.1StoreApp(WP8.1RT)---第三方启动

WP8.1StoreApp(WP8.1RT)---第三方启动

 2014/4/17 12:23:40  刘白菜  博客园  我要评论(0)
  • 摘要:8.1的协议和wp8是相互通用的被启动:相比较wp8而言,基本变化不大,但添加方式更直观了1:打开Package.appxmanifest2:切换到"声明"选项卡3:左侧添加"协议",右侧填写应用的属性4:其中名称就是程序的识别码5:App.cs中overrideOnActivated,处理传入的参数protectedoverridevoidOnActivated(IActivatedEventArgsargs){if(args.Kind==ActivationKind.Protocol)
  • 标签:启动 APP

8.1的协议和wp8是相互通用的

被启动:

相比较wp8而言,基本变化不大,但添加方式更直观了

1:打开Package.appxmanifest

2:切换到"声明"选项卡

3:左侧添加"协议",右侧填写应用的属性

4:其中名称就是程序的识别码

5:App.cs中 override OnActivated,处理传入的参数

        protected override void OnActivated(IActivatedEventArgs args)
        {
            if (args.Kind == ActivationKind.Protocol)
            {
                ProtocolActivatedEventArgs eventArgs = args as ProtocolActivatedEventArgs;
                if (eventArgs.Uri.ToString() == "acfunwz:main")
                    this.OnLaunched(null);

                // TODO: Handle URI activation
                // The received URI is eventArgs.Uri.AbsoluteUri
            }
        }

启动其他应用:

await Windows.System.Launcher.LaunchUriAsync(new Uri("acfunwz:main"));

 

 

发表评论
用户名: 匿名