Daan Luttik
Daan Luttik

Reputation: 2855

Call ui thread from static method ran on a non-ui thread

I have a static method that determines what window is to be called next, but I seem to have no way to navigate to a new window. NavigationService.navigate can only be called from a non-ui thread and the dispatcher doesn't seem to be able to be stored statically and Application.Current.Dispatcher doesn't seem to exist at all in silverlight. If anybody has any tips I would be very grateful.

Edit: Found a way to store the dispatcher don't know why visual studio wouldn't let me before

Upvotes: 0

Views: 208

Answers (1)

Ku6opr
Ku6opr

Reputation: 8126

Maybe you looking for Deployment.Current.Dispatcher available from any place

Upvotes: 1

Related Questions