1 write to windowThread
System (1)
compmod\microsoft\win32\SystemEvents.cs (1)
579
windowThread
= new Thread(new ThreadStart(systemEvents.WindowThreadProc));
5 references to windowThread
System (5)
compmod\microsoft\win32\SystemEvents.cs (5)
580
windowThread
.IsBackground = true;
581
windowThread
.Name = ".NET SystemEvents";
582
windowThread
.Start();
1406
if (
windowThread
!= null) {
1417
windowThread
.Join(); //avoids an AppDomainUnloaded exception on our background thread.