Tag - C# Windows Form Examples

Windows Form

C# Create Countdown with Timer

I’ll show you how to make a countdown with C# and using the timer control. To do this, we create a new Windows Forms project and switch to the code view of the form. For this example, we need some global variables. You...

Windows Form WPF Form

C# Using BackgroundWorker

BackgroundWorker In C# In the case of time-consuming tasks (eg reading a very large text file), it can happen that the form freezes, so to speak. This happens because everything runs in one thread and so the form has no chance to...