My WinForm calls a class which performs some copying actions. I\'d like to show the progress of this on a form.
I\'d like to use the Backgroundworker, but I don\'t k
It is done via the ReportProgress instance method of your current BackgroundWorker object. Your form must subscribe to the ProgressChanged event.
ReportProgress
BackgroundWorker
ProgressChanged
MSDN has a small example here: http://msdn.microsoft.com/en-us/library/waw3xexc%28v=VS.100%29.aspx