Hello, recently I decided to implement the WeifenLuo DockPanel Suite into my VB.NET application. Everything works fine, until you try and close the application, where it then freezes. Nothing happens.

I tried disposing of the DockPanel before closing, I tried using Application.Exit() I tried running Application.DoEvents() before running, and even closing any open DockPanel forms before closing. Nothing, it still simply freezes.

The output shows the following messages:

With the thread names being different each time. However I don't have any threads running?

Code:
The thread 0x1f34 has exited with code 259 (0x103).
The thread 0x22b8 has exited with code 259 (0x103).
Any thoughts? I can't find anyone else with this issue online, and it is really frustrating.

Thanks.