recipe name filter
This commit is contained in:
@@ -49,6 +49,19 @@ public class IOCommanderCameraModule: IVisionBuilderModule
|
||||
_cameraVm.StopCommand.Execute(null);
|
||||
}
|
||||
break;
|
||||
|
||||
case EGPIOCommand.Pause:
|
||||
if(_cameraVm.PauseCommand.CanExecute(null))
|
||||
{
|
||||
_cameraVm.PauseCommand.Execute(null);
|
||||
}
|
||||
break;
|
||||
case EGPIOCommand.Resume:
|
||||
if(_cameraVm.ResumeCommand.CanExecute(null))
|
||||
{
|
||||
_cameraVm.ResumeCommand.Execute(null);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new ArgumentOutOfRangeException(nameof(command), command, null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user