The Windows Phone Silverlight 8.1 app model gives Windows Phone 8 developers access to some of the newest features available in Windows Phone Store apps without significantly modifying existing Windows Phone 8 code. Windows Phone 8 apps are fully supported and run exactly the same on Windows Phone 8.1 devices. If you have an existing Windows Phone 8 app and aren’t looking to add new features, you don’t need to modify your app. If you’re just starting out developing for Windows Phone, or if you’re interested in targeting the PC platform in addition to Windows Phone, you might want to start with a Windows Phone Store app. This app model gives you access to all of the new features, and you can target phone and PC with a single Visual Studio solution. For more information about choosing the best platform for your objectives, see What's next for Windows Phone 8 developers.

Device support for Silverlight 8.1

 

Silverlight 8.1 apps run only on Windows Phone 8.1 devices. Windows Phone 8 devices cannot install or run Silverlight 8.1 apps. However, Windows Phone 8.1 is a free software update that is supported for all existing Windows Phone 8 devices.

Store support for Silverlight 8.1

 

You can publish a Silverlight 8.1 or Windows Phone Store app alongside an existing Windows Phone 7.8 and Windows Phone 8 version of your app in the Windows Phone Store. If you choose to upgrade your app, you can continue to sell and update earlier versions.

Supported Windows Phone 8.1 features for Silverlight 8.1 apps

 

For a high-level list of the features of Windows Phone 8.1 that can be accessed from Silverlight 8.1, see Supported features for Windows Phone Silverlight 8.1 apps.

Windows Phone 8 features for which there is no Windows Phone Store app equivalent

 

There is a small set of features available in Windows Phone 8 apps for which there are no equivalents in Windows Phone Store apps. Silverlight 8.1 apps can still use these features. If your app requires one of these features you should either maintain your Windows Phone 8 app or upgrade your app to Silverlight 8.1.

 

Clipboard APIs

Clipboard

Lock screen background provider

Lock screen background for Windows Phone 8

Ringtone provider

How to use the save ringtone task for Windows Phone 8

Alarms and reminders

Alarms and Reminders for Windows Phone 8

Lens apps

Lenses for Windows Phone 8

Lock screen background provider

Lock screen background for Windows Phone 8

Generating bitmaps for Live Tiles in a Background Task using managed code

Generating bitmaps in a Background Task using native code is supported.

Breaking changes for Silverlight 8.1 apps

 

For a list of Windows Phone 8 features that are known to behave differently in Silverlight 8.1 apps, see Platform compatibility and breaking changes for Windows Phone Silverlight 8.1 apps.

Upgrading to Silverlight 8.1

 

The tools included in the Windows Phone SDK automate the upgrade of your app from Windows Phone 8 to Silverlight 8.1. This is a one-way process. After you have upgraded, the tools can’t convert your solution back to Windows Phone 8, so be sure to back up your project. For instructions on upgrading your app, see Upgrade Windows Phone 8 apps to Windows Phone Silverlight 8.1.

Windows Phone Silverlight 8.1 apps的更多相关文章

  1. fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>

    给对话框添加类, 报错 CalibrateMFCDlg.h(6) : error C2504: “CDialog”: 未定义基类 等多个错误 加上 #include "afxwin.h&qu ...

  2. New Windows 10 SDK - Multi-instance UWP apps

    概述 前面一篇 About Windows 10 SDK Preview Build 17110 中,我们简单介绍了 Multi-instance UWP Apps,今天结合开发过程详细讲解一下. 在 ...

  3. MFC项目中包含atlimage.h导致fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>

    因为要用到CImage所以包含了atlimage.h 报这个错误的话你只需要把atlimage.h放在afxwin.h的下方即可,不能让它在afxwin.h的上方

  4. [深入浅出WP8.1(Runtime)]Windows Phone 8.1和Silverlight 8.1的区别

    1.2.2 Windows Phone 8.1应用程序模型 Windows Phone 8.1支持多种开发语言来开发应用程序,包括C#.VB.JavaScript和C++,那么本书的代码主要是采用C# ...

  5. Mobilize.Net Silverlight bridge to Windows 10 UWP

    Windows UWP 既 Windows 10 Universal Windows platform,这个微软基于Windows NT内核的个运行时(Runtime)平台,此平台横跨所有的 Wind ...

  6. MFC apps must not include windows.h

    用VS2008建立一个DLL项目,一开始的时候不想用MFC, 所以选择的是使用标准Windows库. 使用了一段时间后又想用MFC了,所以把选项改成使用在共享 DLL 中使用 MFC. 但是编译的时候 ...

  7. DEPLOYING NATIVE UWP (UNIVERSAL WINDOWS PLATFORM) APPS FOR JAVA DEVELOPERS & PUBLISHING THEM TO THE MICROSOFT STORE

    原文: DEPLOYING NATIVE UWP (UNIVERSAL WINDOWS PLATFORM) APPS FOR JAVA DEVELOPERS & PUBLISHING THEM ...

  8. Windows Phone开发需要了解的背景

    在Windows Phone8.1之前,Windows Phone应用是基于Silverlight的,这些代码也不能在Windows上运行,从Windows Phone8.1开始,开发者多了一个选择, ...

  9. 关于Store Apps

    因为时代在变迁,Store Apps这个概念很容易引起混淆 在过去,windows phone 8.0时代 windows store apps指的是windows metro style 的应用, ...

随机推荐

  1. HOG目标检测

    用HOG进行行人检测时,需要用训练好的支持向量机来对图片进行分类,在opencv中,支持向量机已经训练好,但自己来训练支持向量机才能更好的体会这一过程. 参考:http://blog.csdn.net ...

  2. Javascript之对象的创建

    面向对象语言有一个非常显著的标志,那就是它们都有类的概念,通过类之间的继承就可以达到任意创建具有相同属性方法的对象.而在ECMAScript中并没有类的概念,它把对象定义为:无序属性的集合,其属性包含 ...

  3. ubuntu获得root用户权限,使用xshell连接!

    一.获取root用户权限 打开linux终端命令,输入 sudo passwd root Enter new UNIX password: (在这输入你的密码) Retype new UNIX pas ...

  4. CVE-2012-0158基于exp分析

    CVE-2012-0158这个洞我之前分析过,漏洞战争这本书里也写过,但是都是用poc分析的,我这次找了一个弹计算器的exp来分析,感觉用poc和用exp还是不一样的,从exp分析要比从poc分析更复 ...

  5. #define const typedef

    #define用法 1. 定义简单的常数:定义常量,便于修改 #define N 1000 2. 定义简单的函数:注意多使用括号 define可以像函数那样接受一些参数,如下: #define max ...

  6. 【hihoCoder】#1513 : 小Hi的烦恼

    题解 我会五维数点辣 只要用个bitset乱搞就好了 记录一下rk[i][j]表示第j科排名为i的是谁 用30000 * 5个大小为30000的bitset s[i][j]是一个bitset表示第j科 ...

  7. 阿里云ali-oss图片增加水印

    先附上文档连接 : https://helpcdn.aliyun.com/document_detail/44957.html 水印文字或图片必须经过一下转化 URL安全的Base64位编码 在图片处 ...

  8. MySQL 20个经典面试题

    1.MySQL的复制原理以及流程 基本原理流程,3个线程以及之间的关联: 1. 主:binlog线程——记录下所有改变了数据库数据的语句,放进master上的binlog中: 2. 从:io线程——在 ...

  9. 牛客网 桂林电子科技大学第三届ACM程序设计竞赛 A.串串-后缀自动机模板题

    链接:https://ac.nowcoder.com/acm/contest/558/A来源:牛客网 A.串串 小猫在研究字符串. 小猫在研究字串. 给定一个长度为N的字符串S,问所有它的子串Sl…r ...

  10. Extjs设置或获取cookie

    设置cookie var myCookie = Ext.util.Cookie.set(‘YourCookieName’,'YourValue’); 读取cookie Ext.util.Cookie. ...