Thomas Makos
Thomas Makos

Reputation: 1686

c# windows control that shows the downloading progress status of a file in a multithreaded software

So I whould like to develop a software in c# that will be capable of downloading youtube videos using threads.

Which control should i use in order to show the progress of each of the videos being downloaded in a given time?

Upvotes: 0

Views: 1165

Answers (1)

Teoman Soygul
Teoman Soygul

Reputation: 25732

You can always use ProgressBar component in conjunction with BackgroundWorker to update the completion status.

Here is a basic sample: C# Winform ProgressBar and BackgroundWorker

By the way, a guy wrote a step-by-step instructions here which may be helpful: http://fernandof.wordpress.com/2007/04/04/implementing-multi-threading-in-winforms-using-the-backgroundworker-class/

Upvotes: 2

Related Questions