WP7 Simple Clock小程序

本文将制作一个很简单的Clock

1、添加一个textBlock控件,代码如下:

<TextBlock Name="txtblk" HorizontalAlignment="Center" VerticalAlignment="Center" />
2、增加命名空间 

     using System.Windows.Threading;

3、编写CS代码

        public MainPage()
        {
            InitializeComponent();

            DispatcherTimer tmr = new DispatcherTimer();
            tmr.Interval = TimeSpan.FromSeconds(1);         //间隔为1秒
            tmr.Tick += OnTimerTick;
            tmr.Start();
        }
        void OnTimerTick(object sender, EventArgs args)
        {
            txtblk.Text = DateTime.Now.ToString();
        }
4、程序运行如下:

posted @ 2010-12-16 16:13  helloxyz  Views(319)  Comments(0Edit  收藏  举报