Windows Phone 7 计时器(停表)例子 Stopwatch

 

相关知识介绍:

1、System.Diagnostics.Stopwatch类
Stopwatch 实例可以测量一个时间间隔的运行时间,也可以测量多个时间间隔的总运行时间。在典型的 Stopwatch 方案中,先调用 Start 方法,然后调用 Stop 方法,最后使用 Elapsed 属性检查运行时间。

Stopwatch 实例或者在运行,或者已停止;使用 IsRunning 可以确定 Stopwatch 的当前状态。使用 Start 可以开始测量运行时间;使用 Stop 可以停止测量运行时间。通过属性 Elapsed、ElapsedMilliseconds 或 ElapsedTicks 查询运行时间值。当实例正在运行或已停止时,可以查询运行时间属性。运行时间属性在 Stopwatch 运行期间稳固递增;在该实例停止时保持不变。

默认情况下,Stopwatch 实例的运行时间值相当于所有测量的时间间隔的总和。每次调用 Start 时开始累计运行时间计数;每次调用 Stop 时结束当前时间间隔测量,并冻结累计运行时间值。使用 Reset 方法可以清除现有 Stopwatch 实例中的累计运行时间。


2、Microsoft.Phone.Shell.PhoneApplicationService类
PhoneApplicationService类提供了在程序的生命周期中可以访问应用程序的各种状态,以及自己存储的该类实例中的信息。用于管理应用程序的闲置行为。

3、相关控件

ToggleButton 类
可切换状态的控件的基类,例如 CheckBox 和 RadioButton。
命名空间: System.Windows.Controls.Primitives

Border 类
在另一个对象的周围绘制边框、背景或同时绘制二者。
命名空间: System.Windows.Controls

可以指定 Border 的基本属性,方法是设置其 Width、Height、BorderThickness 以及 Background 颜色。此外,您还可以通过设置 CornerRadius 属性以将边框的各角改为圆角,并且可以通过设置 Padding 属性以在 Border 中定位对象。
Border 只能包含一个子对象。如果要在多个对象周围放置一个边框,应将这些对象包装到一个容器对象中,例如 StackPanel。

实例代码及说明

 

 

  
  
  
  
  1. <!--LayoutRoot contains the root grid where all other page content is placed--> 
  2.     <Grid x:Name="LayoutRoot" Background="Transparent"> 
  3.         <Grid.RowDefinitions> 
  4.             <RowDefinition Height="Auto"/> 
  5.             <RowDefinition Height="*"/> 
  6.         </Grid.RowDefinitions> 
  7.  
  8.         <!--TitlePanel contains the name of the application and page title--> 
  9.         <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28"> 
  10.             <TextBlock x:Name="ApplicationTitle" Text="STOPWATCH" Style="{StaticResource PhoneTextNormalStyle}"/> 
  11.         </StackPanel> 
  12.  
  13.         <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> 
  14.               
  15.             <!-- 停表展示 --> 
  16.             <Grid VerticalAlignment="Center" 
  17.                   Margin="25 0"> 
  18.                 <Grid.RowDefinitions> 
  19.                     <RowDefinition Height="Auto" /> 
  20.                     <RowDefinition Height="Auto" /> 
  21.                 </Grid.RowDefinitions> 
  22.                 <!-- 时间显示 --> 
  23.                 <TextBlock Name="elapsedText" 
  24.                            Text="0" 
  25.                            Grid.Row="0" 
  26.                            FontFamily="Arial" 
  27.                            FontSize="{StaticResource PhoneFontSizeExtraLarge}" 
  28.                            TextAlignment="Center" 
  29.                            Margin="0 0 0 50"/> 
  30.                 <!--开始停止按钮 --> 
  31.                 <ToggleButton Name="startStopToggle" 
  32.                               Content="Start" 
  33.                               Grid.Row="1" 
  34.                               Checked="OnToggleButtonChecked" 
  35.                               Unchecked="OnToggleButtonChecked" /> 
  36.             </Grid> 
  37.               
  38.             <!-- 用一个Rectangle来控制时间设置的显示和隐藏 --> 
  39.             <Rectangle Name="disableRect"   
  40.                        Fill="#80000000" 
  41.                        Visibility="Collapsed" /> 
  42.               
  43.             <!-- 选择时间格式的对话框 --> 
  44.             <Border Name="formatDialog" 
  45.                     Background="{StaticResource PhoneChromeBrush}" 
  46.                     BorderBrush="{StaticResource PhoneForegroundBrush}" 
  47.                     BorderThickness="3" 
  48.                     HorizontalAlignment="Center" 
  49.                     VerticalAlignment="Center" 
  50.                     Visibility="Collapsed"> 
  51.                 <Grid> 
  52.                     <Grid.RowDefinitions> 
  53.                         <RowDefinition Height="Auto" /> 
  54.                         <RowDefinition Height="Auto" /> 
  55.                     </Grid.RowDefinitions> 
  56.  
  57.                     <Grid.ColumnDefinitions> 
  58.                         <ColumnDefinition Width="*" /> 
  59.                         <ColumnDefinition Width="*" /> 
  60.                     </Grid.ColumnDefinitions> 
  61.  
  62.                     <StackPanel Name="radioButtonPanel" 
  63.                                 Grid.Row="0"   
  64.                                 Grid.Column="0"   
  65.                                 Grid.ColumnSpan="2" 
  66.                                 HorizontalAlignment="Center"> 
  67.  
  68.                         <RadioButton Content="Hour/Minute/Seconds" 
  69.                                      Tag="HourMinuteSecond" /> 
  70.  
  71.                         <RadioButton Content="Seconds" 
  72.                                      Tag="Seconds" /> 
  73.  
  74.                         <RadioButton Content="Milliseconds" 
  75.                                      Tag="Milliseconds" /> 
  76.                     </StackPanel> 
  77.  
  78.                     <Button Grid.Row="1" Grid.Column="0" 
  79.                             Content="ok" 
  80.                             Click="OnOkButtonClick" /> 
  81.  
  82.                     <Button Grid.Row="1" Grid.Column="1" 
  83.                             Content="cancel" 
  84.                             Click="OnCancelButtonClick" /> 
  85.                 </Grid> 
  86.             </Border> 
  87.         </Grid> 
  88.     </Grid> 
  89.     <!-- 底下的工具栏 --> 
  90.     <phone:PhoneApplicationPage.ApplicationBar> 
  91.         <shell:ApplicationBar> 
  92.             <!-- 弹出时间格式设置的按钮 --> 
  93.             <shell:ApplicationBarIconButton IconUri="/Images/appbar.feature.settings.rest.png"   
  94.                                             Text="format" 
  95.                                             Click="OnAppbarFormatClick" /> 
  96.             <!-- 重置时间的按钮--> 
  97.             <shell:ApplicationBarIconButton IconUri="/Images/appbar.refresh.rest.png"   
  98.                                             Text="reset" 
  99.                                             Click="OnAppbarResetClick" /> 
  100.         </shell:ApplicationBar> 
  101.     </phone:PhoneApplicationPage.ApplicationBar> 

 

  
  
  
  
  1. using System;  
  2. using System.Diagnostics;  
  3. using System.Windows;  
  4. using System.Windows.Controls;  
  5. using System.Windows.Media;  
  6. using System.Windows.Navigation;  
  7. using Microsoft.Phone.Controls;  
  8. using Microsoft.Phone.Shell;  
  9. using System.Globalization;  
  10.  
  11. namespace StopWatch  
  12. {  
  13.     public partial class MainPage : PhoneApplicationPage  
  14.     {  
  15.         Stopwatch stopwatch = new Stopwatch();//新建一个停表的类 System.Diagnostics.Stopwatch  
  16.  
  17.  
  18.         TimeSpan suspensionAdjustment = new TimeSpan();//挂起的初始时间  
  19.         string decimalSeparator = NumberFormatInfo.CurrentInfo.NumberDecimalSeparator;//数字格式  
  20.  
  21.         public MainPage()  
  22.         {  
  23.             InitializeComponent();  
  24.             DisplayTime();//初始化显示时间和时间的格式  
  25.         }  
  26.  
  27.         //计时开始结束按钮 事件  
  28.         void OnToggleButtonChecked(object sender, RoutedEventArgs e)  
  29.         {  
  30.             if ((bool)startStopToggle.IsChecked)  
  31.             {  
  32.                 stopwatch.Start();//停表开始  
  33.                 startStopToggle.Content = "Stop";  
  34.                 CompositionTarget.Rendering += OnCompositionTargetRendering;  
  35.                 //当此事件发生时,表示存在一个可视框架可用于呈现到 Silverlight 内容图面。  
  36.                 //然后,可以在处理程序中一帧一帧地修改应用程序的可视对象或任何其他方面的内容。  
  37.             }  
  38.             else  
  39.             {  
  40.                 stopwatch.Stop();//停表结束  
  41.                 startStopToggle.Content = "Start";  
  42.                 CompositionTarget.Rendering -OnCompositionTargetRendering;  
  43.                 //移除帧变化的事件  
  44.             }  
  45.         }  
  46.         //帧变化事件  
  47.         void OnCompositionTargetRendering(object sender, EventArgs args)  
  48.         {  
  49.             DisplayTime();  
  50.         }  
  51.         //重置事件  
  52.         void OnAppbarResetClick(object sender, EventArgs args)  
  53.         {  
  54.             stopwatch.Reset();//停止时间间隔测量,并将运行时间重置为零  
  55.             startStopToggle.IsChecked = false;  
  56.             suspensionAdjustment = new TimeSpan();//重新初始化时间为0  
  57.             DisplayTime();  
  58.         }  
  59.         //设置时间格式的事件  
  60.         void OnAppbarFormatClick(object sender, EventArgs args)  
  61.         {  
  62.             //显示设置时间格式的控件  
  63.             disableRect.Visibility = Visibility.Visible;  
  64.             formatDialog.Visibility = Visibility.Visible;  
  65.  
  66.             // 初始化 radio buttons  
  67.             ElapsedTimeFormat currentFormat = (Application.Current as App).ElapsedTimeFormat;//读取程序的之前的设置  
  68.  
  69.             foreach (UIElement child in radioButtonPanel.Children)  
  70.             {  
  71.                 RadioButton radio = child as RadioButton;  
  72.                 ElapsedTimeFormat radioFormat =   
  73.                     (ElapsedTimeFormat)Enum.Parse(typeof(ElapsedTimeFormat),   
  74.                                                   radio.Tag as string, true);  
  75.                 radio.IsChecked = currentFormat == radioFormat;  
  76.             }  
  77.         }  
  78.         //保存时间的格式  
  79.         void OnOkButtonClick(object sender, RoutedEventArgs args)  
  80.         {  
  81.             foreach (UIElement child in radioButtonPanel.Children)  
  82.             {  
  83.                 RadioButton radio = child as RadioButton;  
  84.                 if ((bool)radio.IsChecked)  
  85.                     (Application.Current as App).ElapsedTimeFormat =   
  86.                         (ElapsedTimeFormat)Enum.Parse(typeof(ElapsedTimeFormat),   
  87.                                                       radio.Tag as string, true);  
  88.             }  
  89.  
  90.             OnCancelButtonClick(sender, args);  
  91.         }  
  92.         //取消事件格式选择  
  93.         void OnCancelButtonClick(object sender, RoutedEventArgs args)  
  94.         {  
  95.             //隐藏设置的控件  
  96.             disableRect.Visibility = Visibility.Collapsed;  
  97.             formatDialog.Visibility = Visibility.Collapsed;  
  98.             DisplayTime();  
  99.         }  
  100.         //显示时间  
  101.         void DisplayTime()  
  102.         {  
  103.             TimeSpan elapsedTime = stopwatch.Elapsed + suspensionAdjustment;//获取停表测量得出的总运行时间  
  104.             string str = null;  
  105.  
  106.             switch ((Application.Current as App).ElapsedTimeFormat)//获取程序的时间格式设置  
  107.             {  
  108.                 case ElapsedTimeFormat.HourMinuteSecond:  
  109.                     str = String.Format("{0:D2} {1:D2} {2:D2}{3}{4:D2}",  
  110.                                         elapsedTime.Hours, elapsedTime.Minutes,  
  111.                                         elapsedTime.Seconds, decimalSeparator,  
  112.                                         elapsedTime.Milliseconds / 10);  
  113.                     break;  
  114.  
  115.                 case ElapsedTimeFormat.Seconds:  
  116.                     str = String.Format("{0:F2} sec", elapsedTime.TotalSeconds);  
  117.                     break;  
  118.  
  119.                 case ElapsedTimeFormat.Milliseconds:  
  120.                     str = String.Format("{0:F0} msec", elapsedTime.TotalMilliseconds);  
  121.                     break;  
  122.             }  
  123.  
  124.             elapsedText.Text = str;  
  125.         }  
  126.         //当页面不再是框架中的活动页面时调用    
  127.         protected override void OnNavigatedFrom(NavigationEventArgs args)  
  128.         {  
  129.             PhoneApplicationService service = PhoneApplicationService.Current;//获取当前应用程序的服务  
  130.             service.State["stopWatchRunning"] = (bool)startStopToggle.IsChecked;//保存到当前的程序状态中  停表是否开始  
  131.             service.State["suspensionAdjustment"] = suspensionAdjustment + stopwatch.Elapsed;//停表的事件  
  132.             service.State["tombstoneBeginTime"] = DateTime.Now;//离开程序页面的时间  
  133.  
  134.             base.OnNavigatedFrom(args);  
  135.         }  
  136.  
  137.         //当页面成为框架中的活动页面时调用  
  138.         protected override void OnNavigatedTo(NavigationEventArgs args)  
  139.         {  
  140.             PhoneApplicationService service = PhoneApplicationService.Current;//获取当前应用程序的服务  
  141.  
  142.             if (service.State.ContainsKey("stopWatchRunning"))//判断是否离开过程序的页面  
  143.             {  
  144.                 suspensionAdjustment = (TimeSpan)service.State["suspensionAdjustment"];  
  145.  
  146.                 if ((bool)service.State["stopWatchRunning"])//判断是否离开程序页面的时候 是否已经开始计时了  
  147.                 {  
  148.                     suspensionAdjustment += DateTime.Now -   
  149.                                                 (DateTime)service.State["tombstoneBeginTime"];//计算时差  
  150.                     startStopToggle.IsChecked = true;  
  151.                 }  
  152.                 else  
  153.                 {  
  154.                     DisplayTime();  
  155.                 }  
  156.             }  
  157.             base.OnNavigatedTo(args);  
  158.         }  
  159.     }  

 

  
  
  
  
  1. namespace StopWatch  
  2. {  
  3.     //时间格式设置枚举  
  4.     public enum ElapsedTimeFormat  
  5.     {  
  6.         HourMinuteSecond,  
  7.         Seconds,  
  8.         Milliseconds  
  9.     }  

app.cs程序初始化和结束的处理

 

  
  
  
  
  1. ……  
  2.  // 程序设置时间格式的设置  
  3.         public ElapsedTimeFormat ElapsedTimeFormat { set; get; }  
  4.         public PhoneApplicationFrame RootFrame { get; private set; }  
  5.         public App()  
  6.         {  
  7.             UnhandledException += Application_UnhandledException;  
  8.             InitializeComponent();  
  9.             InitializePhoneApplication();  
  10.         }  
  11.  
  12.         private void Application_Launching(object sender, LaunchingEventArgs e)  
  13.         {  
  14.             LoadSettings();  
  15.         }  
  16.  
  17.         private void Application_Activated(object sender, ActivatedEventArgs e)  
  18.         {  
  19.             LoadSettings();  
  20.         }  
  21.  
  22.         private void Application_Deactivated(object sender, DeactivatedEventArgs e)  
  23.         {  
  24.             SaveSettings();  
  25.         }  
  26.  
  27.         private void Application_Closing(object sender, ClosingEventArgs e)  
  28.         {  
  29.             SaveSettings();  
  30.         }  
  31.         //加载停表上一次的时间格式设置  
  32.         void LoadSettings()  
  33.         {  
  34.             IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;  
  35.  
  36.             if (settings.Contains("elapsedTimeFormat"))  
  37.                 ElapsedTimeFormat = (ElapsedTimeFormat)settings["elapsedTimeFormat"];  
  38.             else  
  39.                 ElapsedTimeFormatElapsedTimeFormat = ElapsedTimeFormat.HourMinuteSecond;  
  40.         }  
  41.         // 退出程序保存时间设置  
  42.         void SaveSettings()  
  43.         {  
  44.             IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;  
  45.             settings["elapsedTimeFormat"] = ElapsedTimeFormat;  
  46.             settings.Save();  
  47.         }  
  48. …… 

 

你可能感兴趣的:(windows,计时器,phone,stopwatch,7)