protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                tts?.Stop();
                tts?.Shutdown();
                tts = null;
            }

            base.Dispose(disposing);
        }