public static void PlayTextToSpeech(string text) { SpeachEventArgs args = new SpeachEventArgs(text); SpeakText?.Invoke(null, args); }
private void OnSpeakClick(int position) { SpeakText?.Invoke(this, position); }