northTiger
northTiger

Reputation: 253

How to determine a thread UI thread

what is the simple way to know which thread is UI thread or the thread which create a control in a WinForm app?

When I opened window task manager, I found 8 threads for my winform application. So how many of them are UI threads.

generally, how many UI threads created by the winForm engine?

Upvotes: 1

Views: 195

Answers (1)

Jakob Christensen
Jakob Christensen

Reputation: 14956

This may not answer your question since I don't know exactly what you are trying to accomplish but if Control.InvokeRequired is false then you are on the thread that created the control.

Upvotes: 1

Related Questions