Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Your question is extremely unclear. – SLaks Feb 7 at 19:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.