/// <summary>
 /// Stop the Stack Worker when the Program closes
 /// </summary>
 private void OnApplicationQuit()
 {
     FunctionThread.StopStackWorker();
 }
 /// <summary>
 /// Start the Stack Worker
 /// </summary>
 void Start()
 {
     FunctionThread.RunStackWorker();
 }