예제 #1
0
        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);
        }
예제 #2
0
        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());
        }