コード例 #1
0
ファイル: DisplayResults.xaml.cs プロジェクト: ghostunit/munc
 private void HandleUpdatedFileList(object sender, FileListUpdatedEventArgs e)
 {
   jobsToProcess = e.FilesToProcess;
 }
コード例 #2
0
ファイル: Mp4RepairJob.cs プロジェクト: ghostunit/munc
        private void SendFileListUpdatedEvent(int filesToProcess)
        {
            var eventArgs = new FileListUpdatedEventArgs(filesToProcess);

              if (FileListUpdated != null)
              {
            FileListUpdated(this, eventArgs);
              }
        }