コード例 #1
0
ファイル: frmBackup.cs プロジェクト: jez9999/gooeycarboncopy
 private void displayNextMsgInvoker(GetNextMessageCallback getNextMsgCb)
 {
     DisplayNextMsgCallback cb = new DisplayNextMsgCallback(displayNextMsg);
     SafeInvoker si = new SafeInvoker(this);
     si.Invoke(cb, new object[] { getNextMsgCb });
 }
コード例 #2
0
ファイル: frmBackup.cs プロジェクト: jez9999/gooeycarboncopy
 private void backupFinishedInvoker()
 {
     BackupFinishedCallback cb = new BackupFinishedCallback(backupFinished);
     SafeInvoker si = new SafeInvoker(this);
     si.Invoke(cb, new object[] {  });
 }