Create threads to update GUI

This commit is contained in:
Duc
2025-01-04 08:33:01 -07:00
parent 1d8f6e4c96
commit 7e2a821337
9 changed files with 385 additions and 105 deletions

View File

@@ -108,6 +108,12 @@ namespace ProgramLib
_threadList.Add(new PowerSupplyReadThread(ps.Name));
_threadList.Last().Start();
}
_threadList.Add(new PassthroughDataGuiUpdateThread());
_threadList.Last().Start();
_threadList.Add(new PowerSupplyGuiUpdateThread());
_threadList.Last().Start();
}
}
catch (Exception ex)