The load screen thread is working before than load resources thread finish, because all acess file (Getimage)(GetJson) on windows phone work only on thread caller.
private void loading()
{
backgroundWorker = new BackgroundWorker();
backgroundWorker.DoWork += new DoWorkEventHandler(background_DoWork);
backgroundWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(backgroundWorker_RunWorkCompleted);
backgroundWorker.RunWorkerAsync();
}
void background_DoWork(object sender, DoWorkEventArgs e)
{
WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(montaLinks);
client.DownloadStringAsync(new Uri(LINK_PRINCIPAL));
}
void backgroundWorker_RunWorkCompleted(object sender, RunWorkerCompletedEventArgs e)
{
InitializeComponent();
this.Loaded += new RoutedEventHandler(MainPage_Loaded);
}
The problem is I want work on loading multiple informations from JSON and load each image on windows phone screen, but one thread cant wait a other thread, so If I can put for each image loading state and the user can click on others whit load complete this will be perfect so I can work whit a full screen load too, any advice?