Esempio n. 1
0
 private void Capture()
 {
     try
     {
         audioGraph.StartCapture(CaptureSeconds);
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }
Esempio n. 2
0
 private void Capture()
 {
     // todo: return if already capturing
     try
     {
         Title = string.Format("{0} - Capturing", AppTitle);
         audioGraph.StartCapture(CaptureSeconds);
     }
     catch (Exception e)
     {
         MessageBox.Show(e.ToString());
     }
 }