8.0 Other: Lock screen information and lock screen background, battery status, multi resolution, store, built-in protocol, fast recovery
Introduced
Different Windows Phone 8.0 other
Lock screen information and lock screen background
Battery status
Multi-resolution applications
Actions related to Windows Phone store
Built-in protocols for the system
Fast recovery applications
Description of App.xaml.cs
Description of Manifest
Example
1, show how to send information to the lock screen, and how to modify the lock screen background
Others/lockscreen.xaml
<phone:phoneapplicationpage x:class= "Demo.Others.LockScreen" xmlns= "http://schemas.microsoft.com/winfx/2006/x Aml/presentation "xmlns:x=" Http://schemas.microsoft.com/winfx/2006/xaml "xmlns:phone=" Clr-namespace: Microsoft.phone.controls;assembly=microsoft.phone "Xmlns:shell=" clr-namespace:microsoft.phone.shell;assembly= Microsoft.phone "xmlns:d=" http://schemas.microsoft.com/expression/blend/2008 "xmlns:mc=" http:// schemas.openxmlformats.org/markup-compatibility/2006 "fontfamily=" {StaticResource PhoneFontFamilyNormal} "FontSiz E= ' {StaticResource phonefontsizenormal} ' foreground= ' {StaticResource Phoneforegroundbrush} ' SupportedOrientations= "Portrait" orientation= "Portrait" mc:ignorable= "D" shell:systemtray.isvisible= "True" > <grid x:Name= "LayoutRoot" background= "Transparent" > <StackPanel> <textblock name= "LBLM" SG "textwrapping=" Wrap "/> <button name= "Btngotolockscreen" content= "Jump to the lock screen settings interface" click= "Btngotolockscreen_click"/> <button name= "btn Sendmessagetolockscreen "content=" send message to the lock screen "click=" Btnsendmessagetolockscreen_click "/> <button Name
= "Btnlockscreenbackground" content= "Modify the lock screen background" click= "Btnlockscreenbackground_click"/> </StackPanel> </Grid> </phone:PhoneApplicationPage>