Reputation: 1867
I am working on windows phone 8 and i trying to download multiple files through multiple buttons from the ListBox of windows phone 8. I want to show the individual progresses in my listBox. How is this possible ? if you have any answer than please reply.
I have found one solution like TransferControl which has the capability to pause and resume the download in windows phone 8 but i am unable to implement on that so if you have the proper tutorial except this link than please give me the link.
OR
suggest me what the way me should follow to show individual progress in listbox after button_click in windows phone 8 ?
Upvotes: 0
Views: 204
Reputation: 995
Creating download queue would be better if you think and perform download one by one because if you will give download request of two or more download and both are in progress then ProgressChange event will fire for both download request so no appropriate progress can get.
Although if you provide separate progress change handler for each request then you can download multiple file with progressbar.
Upvotes: 1