Tagged Questions

4
votes
2answers
3k views

Why does WPF require a STAThread attribute to be applied to the Main method?

I am new to WPF, and in every tutorial I read, they either have a [System.STAThread] attribute applied to their Main method, or they tell the reader to do that. Is this attribute really "required"? ...
4
votes
1answer
3k views

WPF with Windows Forms - STAThread

I am a newbie to WPF and have a couple of questions about WPF and Windows Forms integration. I have an existing Visual C# Windows Forms application. I would like to integrate it with a WPF window, ...
1
vote
0answers
24 views

Parallel programming with STA Thread or TaskScheduler.FromCurrentSynchronizationContext()

I'm writing a code which produces the XPS file using WPF controls. Let's say 100 page document. As we know that since its using the WPF UI Elements it must be STA thread. Form the front end I have a ...
0
votes
1answer
163 views

The calling thread must be STA, because many UI components require this

I know, there are a lot of similar questions on SO. But I have pretty strange situation: I get this exception while it is executed inside Dispatcher.CurrentDispatcher.Invoke. I have no idea how to fix ...
0
votes
1answer
232 views

Out of the blue STA thread exception in WPF application

I'm getting the exception 'The calling thread must be STA, because many UI components require this.' Which is stupid because the constructor that is giving the exception IS BEING CALLED FROM WITHIN A ...
0
votes
3answers
527 views

IoC and User Interfaces

I'm trying to wrap my head around the best way to use IoC within my application for dependency injection, however I have a little issue. I am using a loose implementation of the MVP pattern with a ...