Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# WPF Listview updating

Tags:

c#

listview

wpf

I have a listview like the picture below. As you can se I have one column called Time. I want to know how I can update the time automatically.

For example the time of Flight Code ABC123 should after 1 minute change from 3 minutes to 4 minutes.

Flight ListView

like image 440
EM10 Avatar asked Jan 24 '26 03:01

EM10


1 Answers

Look into the dispatch timer and perform a record update every minute

That's what I would do

like image 134
J King Avatar answered Jan 26 '26 17:01

J King