private void TogglePresentMonRecording() { // Send user note to present mon interface if (!String.IsNullOrEmpty(userInterfaceState.CaptureUserNote)) { presentMon.UpdateUserNote(userInterfaceState.CaptureUserNote); } if (!String.IsNullOrEmpty(userInterfaceState.CaptureOutputFolder)) { presentMon.UpdateOutputFolder(userInterfaceState.CaptureOutputFolder); } presentMon.ToggleRecording((bool)allProcessesRecordingcheckBox.IsChecked, (uint)ConvertTimeString(userInterfaceState.TimePeriod), (bool)audioCueCheckBox.IsChecked); }
private void TogglePresentMonRecording() { // Send user note to present mon interface if (!String.IsNullOrEmpty(userInterfaceState.RecordingUserNote)) { presentMon.UpdateUserNote(userInterfaceState.RecordingUserNote); } if (!String.IsNullOrEmpty(userInterfaceState.RecordingOutputFolder)) { presentMon.UpdateOutputFolder(userInterfaceState.RecordingOutputFolder); } presentMon.ToggleRecording((bool)allProcessesRecordingcheckBox.IsChecked, (uint)ConvertTimeString(timePeriod.Text), GetRecordingDetail().ToInt()); }