I have a question!
Is it bad that update UI in ther timer_tick()? (update UI example: change label1.Text)
Without timer, I should use Invoke() in other thread(made by me).
I want to ask this: using Invoke periodically is better than update UI in timer_tick()?
I think the work of timer is short enough to complete within the timer interval, but my boss hates it.
I'm using .Net Framework 4.5, winform