I set a timer
DispatcherTimer messageTimer = new DispatcherTimer();
messageTimer.Tick += new EventHandler(messageTimer_Tick);
messageTimer.Interval = new TimeSpan(0, 0, 1);
And a
<Label Name="time" Grid.Column="5" Grid.Row="1" />
How to caculate the run time and show it in the label?