Esempio n. 1
0
 public void CamerControl(Direction direction, uint step, bool stop = false)
 {
     if (!IsPlaying)
     {
         ShowError("尚未播放!");
         return;
     }
     try
     {
         SDK.CamerControl(direction, step, stop);
     }catch (Exception ex)
     {
         ShowError(ex.Message);
     }
 }