示例#1
0
        public void SpeechStop()
        {
            if (synth != null)
            {
                synth.SpeechStop();
                synth = null;
            }

            if (recog != null)
            {
                recog.Stop();
                recog = null;
            }
        }
示例#2
0
 public void SpeechStart( PluginControl pc, string[] beeps)
 {
     synth = new WinSynth( pc, beeps);
     synth.SpeechStart();
 }
示例#3
0
        public void SpeechStop()
        {
            if (synth != null)
            {
                synth.SpeechStop();
                synth = null;
            }

            if (recog != null)
            {
                recog.Stop();
                recog = null;
            }
        }
示例#4
0
 public void SpeechStart(PluginControl pc, string[] beeps)
 {
     synth = new WinSynth(pc, beeps);
     synth.SpeechStart();
 }