Tagged Questions

8
votes
4answers
3k views

Faking synchronous calls in Silverlight WP7

I'm porting some code from the full .NET framework to the WP7 version and I'm running into an issue with synchronous vs async calls. string response; string requestString = GenerateReqString(); ...
6
votes
6answers
5k views

How can I render text on a WriteableBitmap on a background thread, in Windows Phone 7?

I am trying to render text on a bitmap in a Windows Phone 7 application. Code that looks more or less like the following would work fine when it's running on the main thread: public ImageSource ...
2
votes
3answers
870 views

How close BackgroundWorker thread when application is deactivated?

I create thread with BackgroundWorker, and in the loop I check every time if CancellationPending is true or not, like this: public MainPage() { InitializeComponent(); bw = new ...
0
votes
1answer
300 views

Detect if code is running on background thread or UI (Dispatcher) thread

I have a Windows Phone 7 application that uses the Dispatcher to make sure code gets run on the UI thread, but sometimes I need to know which thread the method was called on. How can I detect if a ...
9
votes
3answers
7k views

How to run a function on a background thread for Windows Phone 7?

I'm using MVVM Light to build a WP7 (Windows Phone 7) application. I wish to have all the work performed by the Model to be run on a background thread. Then, when the work is done, raise an event so ...
3
votes
2answers
675 views

Notify the UI Thread from Background Thread

I am trying to download some pages in the background, whose contents will be inserted into a database. I need to do this on a background thread of some kind (either BackgroundWorker or ThreadPool, ...
1
vote
1answer
1k views

Creating BitmapImage on background thread WP7

I'm receiving an UnauthorizedAccessException ("Invalid cross-thread access.") when running the following code on a background (threadpool) thread, is this expected behaviour? var uri = new ...
0
votes
3answers
946 views

Silverlight Background Thread using WebClient

I'm using a WebClient to get infos asynchronously from my web service : wc.DownloadStringCompleted += DownloadStringCompleted; wc.DownloadStringAsync(service); I works fine, but I think the ...
2
votes
1answer
242 views

Stopping Thread in Windows Phone 7

How can i stop/abort/interrupt thread in WP7 ? Update: Came up with the following solution (queue event is part of consumer/producer Q and is not actually required for exiting thread :)): protected ...
2
votes
2answers
490 views

WP7- Confused about network communication, cross thread access, and continuation passing

I'm porting a WPF app to WP7, and in the process I've had to refactor all the code that touches the network. The old code used the synchronous methods of the WebRequest object in background threads, ...
1
vote
1answer
3k views

WP7 - accessing UI thread?

How do I access the UI thread of a WP7 application? I am using the following code, if it helps. private void LayoutRoot_Loaded(object sender, RoutedEventArgs e) { AcquireNews(l ...
1
vote
1answer
645 views

thread affinity of UI controls in windows phone 7

How do I handle thread affinity issues in windows phone 7 when I'm building a multi-threaded application? A simple example is the user kicks of some long running process that is handled in another ...
0
votes
3answers
63 views

Threaded Scoring System

I'm starting to learn threading and have encountered a problem. I have a scoring system that is designed to add a point to a temporary addedPoints variable to show the player how many points they ...
0
votes
1answer
225 views

Thread Sleep in for cycle doens't work wp7

I have a problem with this piece of code. I need to make a pause of two seconds to see the images. So I put the thread to sleep, but it doesn't work. I need to wait two seconds until I pass to the ...
0
votes
1answer
172 views

How to close thread when application deactivated?

I have some thread in some page (e.g page1) in wp7. I want to close these thread when the application deactivated in this page, not in the global application file.When application deactivated from ...