1. 程式人生 > >Winphone基於事件程式設計

Winphone基於事件程式設計

上一篇提到了基於代理(委託)的程式設計,這裡說一下基於事件的程式設計。其實基於事件的程式設計和基於代理的程式設計差不多,可以說是基於代理程式設計的2.0版本,但是基於事件程式設計有一個很大的改進,那就是支援多播。

下面是一個小例子,點選按鈕之後5S之後獲取系統時間並且顯示出來。

<phone:PhoneApplicationPage
    x:Class="EventTask.MainPage"
    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"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    shell:SystemTray.IsVisible="True">

    <!--LayoutRoot 是包含所有頁面內容的根網格-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <!-- 本地化說明:
            若要本地化顯示的字串,請將其值複製到應用程式的非特定語言資原始檔(AppResources.resx)
            中的適當命名的鍵,然後
            將屬性的引號之間的硬編碼文字值
            替換為其路徑指向該字串名稱的繫結子句。

            例如:

                Text="{Binding Path=LocalizedResources.ApplicationTitle, Source={StaticResource LocalizedStrings}}"

            此繫結指向模板的名為“ApplicationTitle”的字串資源。

            在“專案屬性”選項卡中新增受支援的語言將會為
            每種語言建立一個新的 resx 檔案,該檔案可以包含 UI 字串的翻譯值
            。這些示例中的繫結將導致在執行時從
            與應用程式的 CurrentUICulture 匹配的 .resx 檔案中
            提取屬性的值。
         -->

        <!--TitlePanel 包含應用程式的名稱和頁標題-->
        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28"/>

        <!--ContentPanel - 在此處放置其他內容-->
        <Button Content="顯示時間" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="166,293,0,0" Grid.Row="1" RenderTransformOrigin="0.548,1.459" Click="Button_Click"/>

        <!--取消註釋,以顯示對齊網格,從而幫助確保
            控制元件在公用邊界上對齊。影象在系統欄中顯示時的
            上邊距為 -32px。如果隱藏了系統欄,則將此值設為 0
            (或完全刪除邊距)。

            在傳送之前刪除此 XAML 和影象本身。-->
        <!--<Image Source="/Assets/AlignmentGrid.png" VerticalAlignment="Top" Height="800" Width="480" Margin="0,-32,0,0" Grid.Row="0" Grid.RowSpan="2" IsHitTestVisible="False" />-->
    </Grid>

</phone:PhoneApplicationPage>

下面是控制類和code behind之間溝通的類,負責傳遞資料,要繼承EventArgs類。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace EventTask
{
    /// <summary>
    /// 自定義傳遞事件
    /// </summary>
    public class StateChangedEventArgs : EventArgs
    {
        public DateTime Time { get; set; }
        public StateChangedEventArgs(DateTime d)
        {
            Time = d;
        }
    }
}

下面是code behind

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using EventTask.Resources;

namespace EventTask
{
    public partial class MainPage : PhoneApplicationPage
    {
        private ShowTimeTask task;
        // 建構函式
        public MainPage()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            task = new ShowTimeTask();
            task.StateChangedEvent += ShowTime;
            // 呼叫方法獲得當前系統事件,當呼叫完畢之後呼叫ShowTime方法
            task.GetTime();
        }

        private void ShowTime (ShowTimeTask sender, StateChangedEventArgs args)
        {
            DateTime now = args.Time;
            MessageBox.Show(now.ToString());
        }

    }
}

然後就是我們的控制類(獲取系統時間):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace EventTask
{
    public class ShowTimeTask
    {
        // 委託
        public delegate void StateChanged(ShowTimeTask sender, StateChangedEventArgs args);
        // 定義事件
        public event StateChanged StateChangedEvent;

        public void GetTime()
        {
            if (StateChangedEvent != null)
            {
                DateTime time = DateTime.Now;
                Thread.Sleep(5000);
                StateChangedEvent(this, new StateChangedEventArgs(time));
            }
        }
    }
}

注意上面的寫法就行了。一定要注意在ShowTimeTask裡面代理的引數。上面GetTime函式是該類的邏輯核心。