I am trying to track my BackgroundWorker threads as described in this article the Threads Debug Windows is empty:

And yes, I'm debugging.
What am I missing?
I am trying to track my BackgroundWorker threads as described in this article the Threads Debug Windows is empty:

And yes, I'm debugging.
What am I missing?
You need to pause your application first; the debugger will not display anything while your code is running.
You can either set a breakpoint and wait until it gets hit, or click the Pause button to break immediately.
Debug > Break All did the trick. The question now is: How do I kill a specific thread for diagnostic purposes?