Jump to content

C# - Contagem decrescente até à data selecionada


Alexandre Rosa

Recommended Posts

Boa tarde malta.

Eu estou a criar uma aplicação que basicamente seleciono a data e uma hora e uma data nos seus respetivos datetimepickers, aparecendo assim o tempo que falta .

Eu fiz o cálculo só que quando eu abro a aplicação e seleciono a hora e a data, aparece o tempo que falta só que não faz a contagem decrescente.

datetimepicker1 - hora

datetimepicker7 - data

Aqui está o respetivo código:

private void timer1_Tick(object sender, EventArgs e)
        {
            DateTime date1 = new System.DateTime(dateTimePicker1.Value.Ticks);
            DateTime date2 = new System.DateTime(dateTimePicker7.Value.Ticks);
            TimeSpan resultado = dateTimePicker1.Value - dateTimePicker7.Value;
            label1.Text = resultado.ToString(@"dd\:hh\:mm\:ss");
            timer1.Start();
        }

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.