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); } }