Inheritance: CameraViewEventArgs
Ejemplo n.º 1
0
 protected virtual void OnCameraViewLog(CameraViewLogEventArgs e)
 {
     if (this.EventLog != null)
     {
         EventLog(this, e);
     }
 }
Ejemplo n.º 2
0
 protected virtual void OnCameraViewLog(CameraViewLogEventArgs e)
 {
     if (this.EventLog != null)
     {
         EventLog(this, e);
     }
 }
Ejemplo n.º 3
0
 private void CameraView_CameraViewLog(object sender, CameraViewLogEventArgs e)
 {
     this.logViewer.Add(e.LogLevel, e.CameraView, e.Message);
 }