Background Task(背景工作)之警報(Alarm)和提醒(Reminder)
介紹
與眾不同 windows phone 7.5 (sdk 7.1) 之背景工作
Alarm - 警報
Reminder - 提醒
>樣本
1、示範 Alarm(按一個時間計劃彈出警報資訊)
AlarmDemo.xaml
<phone:PhoneApplicationPage x:Class="Demo.BackgroundTask.AlarmDemo" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/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}" FontSize="{StaticResource PhoneFontSizeNormal}" Foreground="{StaticResource PhoneForegroundBrush}" SupportedOrientations="Portrait" Orientation="Portrait" mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480" shell:SystemTray.IsVisible="True"> <StackPanel Orientation="Vertical"> <TextBlock Text="Alarm 的樣式" /> <Image Source="/BackgroundTask/Alarm.png" /> <Button x:Name="btnRegister" Content="註冊一個一分鐘後啟動的 Alarm" Click="btnRegister_Click" /> <TextBlock x:Name="lblMsg" /> </StackPanel> </phone:PhoneApplicationPage>
AlarmDemo.xaml.cs
/* * ScheduledAction - 所有計劃活動的基類,抽象類別。ScheduledNotification 和 ScheduledTask 繼承自此類 * ScheduledNotification - 用於按時間計劃彈出資訊,抽象類別 * * Alarm - 按一個時間計劃彈出警報資訊,每一個程式在某個時刻最多隻能有 50 個警報資訊。Alarm 繼承自 ScheduledNotification * Name - Alarm 的名稱,此名稱即 ID * Title - 警報的標題,這個只能顯示系統預設值,無法修改 * Content - 警報的詳細內容 * Sound - 警報的警報音的地址(Uri 類型) * BeginTime - 在此時間點彈出警報資訊(系統每隔一分鐘會統一調度所有 ScheduledNotification 一次,也就是說系統會在 BeginTime 所指定時間點的一分鐘之內彈出相關資訊) * ExpirationTime - 警報的到期時間。當彈出警警示報後,如果使用者選擇了“延遲”,則一段時間過後還會繼續彈出此次計劃的警報資訊,但是在此值所指定的時間點過後則永遠不再彈出此次計劃的資訊 * RecurrenceType - 彈出資訊的時間計劃類型。Microsoft.Phone.Scheduler.RecurrenceInterval 枚舉:None|Daily|Weekly|Monthly|EndOfMonth|Yearly * IsEnabled - 目前此值無用 * IsScheduled - 此 ScheduledAction 之後是否有執行計畫(唯讀欄位) * * ScheduledActionService - 管理 ScheduledAction 的類 * ScheduledActionService.GetActions<T>() where T : ScheduledAction - 尋找系統中登入的 ScheduledAction 類型的資料 * ScheduledAction.Find(string name) - 按名稱尋找指定的 ScheduledAction * ScheduledAction.Remove(string name) - 按名稱刪除指定的 ScheduledAction * ScheduledAction.Add(ScheduledAction action) - 註冊一個新的 ScheduledAction * ScheduledAction.Replace(ScheduledAction action) - 更新指定的 ScheduledAction */ using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using Microsoft.Phone.Controls; using Microsoft.Phone.Scheduler; namespace Demo.BackgroundTask { public partial class AlarmDemo : PhoneApplicationPage { public AlarmDemo() { InitializeComponent(); this.Loaded += new RoutedEventHandler(AlarmDemo_Loaded); } void AlarmDemo_Loaded(object sender, RoutedEventArgs e) { ShowRegisteredAlarm(); } // 顯示程式中已有的 Alarm private void ShowRegisteredAlarm() { // IEnumerable<ScheduledNotification> notifications = ScheduledActionService.GetActions<ScheduledNotification>(); IEnumerable<Alarm> alarms = ScheduledActionService.GetActions<Alarm>(); lblMsg.Text = "程式中登入的 Alarm 的名稱為:" + string.Join(",", alarms.Select(p => p.Name).ToList()); } private void btnRegister_Click(object sender, RoutedEventArgs e) { // 尋找程式中指定的 Alarm,如果沒有則執行個體化一個 Alarm alarm = ScheduledActionService.Find("alarm") as Alarm; if (alarm == null) alarm = new Alarm("alarm"); // alarm.Title = "Alarm Title"; // Alarm 的 Title 屬性無法修改 alarm.Content = "Alarm Content"; alarm.Sound = new Uri("/Assets/SuperMario.mp3", UriKind.Relative); alarm.BeginTime = DateTime.Now.AddMinutes(1); alarm.ExpirationTime = DateTime.Now.AddDays(1); alarm.RecurrenceType = RecurrenceInterval.Daily; ; // 程式中如果有沒有指定的 Alarm,則 Add,否則 Replace if (ScheduledActionService.Find("alarm") == null) ScheduledActionService.Add(alarm); else ScheduledActionService.Replace(alarm); ShowRegisteredAlarm(); } } }
查看本欄目更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/