private void PagedGazeMenu_GazeSelect(object sender, RoutedEventArgs e)
 {
     if (e.OriginalSource is GazeButton)
     {
         var button = e.OriginalSource as GazeButton;
         System.Console.WriteLine("Selected " + button.Text + ", link = " + button.Link);
         _parent.ShowModal(button.Text);
         _phraseService.Speak(button.Text);
     }
 }
示例#2
0
 public void OnKeyboardInput(string message)
 {
     _parent.ShowModal(message);
     _phraseService.Speak(message);
 }