I have an app that uploads files to server using the webclient. I'd like to display a progressbar while the file upload is in progress. How would I go about achieving this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
WebClient.UploadFileAsync will allow you to do this.
...
Note that the thread won't block on Upload anymore, so I'd recommend using:
...
|
|||||
|
|
Add your event handler to WebClient.UploadProgressChanged and call WebClient.UploadFileAsync. See the WebClient.UploadProgressChanged documentation for an example. |
|||
|
|