示例#1
0
 private void RecognizedText(object sender, RecognizedTextArgs e)
 {
     txtOutput.Invoke((MethodInvoker) delegate
     {
         txtOutput.Text = e.Text;
     });
 }
示例#2
0
 private void RecognizedText(object sender, RecognizedTextArgs e)
 {
     txtOutput.InvokeAction(() => txtOutput.Text = e.Text);
 }