Antisan
Antisan

Reputation: 63

How to Increment timer asynchronously ?

I am trying to Update a timer asynchronously On a Button Click .

say example i have set the time = 60 seconds

and when i run the program after few TIME the timer has reached to 45 seconds and when i click the Button ,then it should add j=15 seconds to the time and the timer should change to 60 seconds asynchronously. Please Help

    private int time = 60;
    DateTime dt = new DateTime();
    private j = 15 ;
    private DispatcherTimer timer;

    public MainWindow()
    {
        InitializeComponent();
        timer = new DispatcherTimer();
        timer.Interval = new TimeSpan(0, 0, 1);
        timer.Tick += timer_tick;
        timer.Start();
        }

    void timer_tick(object sender, EventArgs e)
    {
        if (time >0)
        {
          time--;
            text.Text = TimeSpan.FromSeconds(time).ToString();
        }
        else
        {
            timer.Stop();
        }
    }

  private void Button_Click(object sender, RoutedEventArgs e)
    {
        text.Text = dt.AddSeconds(j).ToString("HH:mm:ss");
    }

Upvotes: 0

Views: 495

Answers (1)

Georgi
Georgi

Reputation: 529

Here is my code you can try it it's working.

    private int time = 60;
    DateTime dt = new DateTime();
    private int j = 15;
    private Timer timer1 = new Timer();


    void timer_tick(object sender, EventArgs e)
    {
        if (time > 0)
        {
            time--;
            text.Text = TimeSpan.FromSeconds(time).ToString();
        }
        else
        {
            timer1.Stop();
        }
    }

    public timer()
    {
        InitializeComponent();
        timer1 = new Timer();
        timer1.Interval = 1000;
        timer1.Tick += timer_tick;
        timer1.Start();
    }



    private void button1_Click(object sender, EventArgs e)
    {
        time += j;
    }

Upvotes: 1

Related Questions