user1071461
user1071461

Reputation:

Background Worker reporting multiple percentages

I'd like my background worker to report progress for both individual tasks and the total progress. Any suggestions how i'd get multiple values over to backgroundworker_ProgressChanged?

Thanks

Upvotes: 0

Views: 144

Answers (1)

Uwe Keim
Uwe Keim

Reputation: 40736

The userState object of the ReportProgress method could be used for passing arbitrary objects to the ProgressChanged event.

Upvotes: 5

Related Questions