コード例 #1
0
 void _controller_OnException(ControllerExceptions ex)
 {
     ControllerException = ex;
     InvokePropertyChanged("ControllerException");
 }
コード例 #2
0
ファイル: Controller.cs プロジェクト: Minatron/Minatron
 public void InvokeOnException(ControllerExceptions ex)
 {
     ControllerException handler = OnException;
     if (handler != null) handler(ex);
 }