I am new to windows.I have one small issue i.e I want to download a folder for the first time when the application is launched.After the file is download I want to move to the Main Page.
StorageFile localFile = await destinationFolder.CreateFileAsync(localFileName, CreationCollisionOption.ReplaceExisting);
BackgroundDownloader downloader = new BackgroundDownloader();
DownloadOperation download = downloader.CreateDownload(m_source, localFile);
I have used this code for download in mainpage.
Please correct your question. You said you want to download a folder then you want to go to the MainPage. But the code you are using is already on MainPage. That Means you don't know what you are doing.
I agree with Igor Kulman. What else you can do is just hide everything in the MainPage and when the downloading is complete, show what you want on your page. While downloading you can show progress bar that tells user that something is going on.