Inheritance: CameraViewEventArgs
コード例 #1
0
 protected virtual void OnCameraViewLog(CameraViewLogEventArgs e)
 {
     if (this.EventLog != null)
     {
         EventLog(this, e);
     }
 }
コード例 #2
0
ファイル: CameraView.cs プロジェクト: zhuangyy/Motion
 protected virtual void OnCameraViewLog(CameraViewLogEventArgs e)
 {
     if (this.EventLog != null)
     {
         EventLog(this, e);
     }
 }
コード例 #3
0
ファイル: MainForm.cs プロジェクト: zhuangyy/Motion
 private void CameraView_CameraViewLog(object sender, CameraViewLogEventArgs e)
 {
     this.logViewer.Add(e.LogLevel, e.CameraView, e.Message);
 }