示例#1
0
 public void InvokeOnException(CameraExceptions exception)
 {
     if (IsFreeze) return;
     CameraExeption handler = OnException;
     if (handler != null) handler(exception);
 }
示例#2
0
 void Camera_OnException(CameraExceptions exception)
 {
     CameraException = exception;
     InvokePropertyChanged("CameraException");
 }