Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF add a clock to my GUI

Tags:

time

wpf

clock

Simple Request - I want to be able to display the current time within my WPF application window. Are there free controls out there for this? Just need to display the time, nothing else.

like image 351
Unknown Coder Avatar asked Nov 05 '22 18:11

Unknown Coder


1 Answers

You could have a label or a text block and have its content bound to System.DateTime.Now

like image 149
gprasant Avatar answered Nov 14 '22 20:11

gprasant