Those are my declarations and methods of DispatcherTimer:
private DispatcherTimer DishTimer;
private TimeSpan SpanTime;
private void InitTimer()
{
    DishTimer = new DispatcherTimer();
    DishTimer.Interval = new TimeSpan(0, 0, 0, 1);
    DishTimer.Tick += TimerOnTick;
}
private void TimerOnTick(object sender, object o)
{
    SpanTime = SpanTime.Add(DishTimer.Interval);
    Duration.DataContext = SpanTime;
}        
This is where i call it:
private void CaptureButton_Click(object sender, RoutedEventArgs e)
{
    if ((string) CaptureButton.Content == "Capture")
    {
        CaptureAudio();
        InitTimer();
        DishTimer.Start();
        ProgressRing.IsActive = true;
        CaptureButton.Content = "Stop";
    }
    else
    {
        StopCapture();
        DishTimer.Stop();
        ProgressRing.IsActive = false;
        CaptureButton.Content = "Capture";
    }
}
and here is my xaml code for showing the timer:
<TextBlock Name="Duration" Text="{Binding}"  HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="24"></TextBlock>
I am making a voice recording app and i want everytime the user press capture to show a timer. My problem here is that i can't reset it
Calling Stop() and then Start() should restart the Timer Interval.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With