private void BackgroundCreationWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
        {
            P2PEditor.GuiLogMessage(String.Format(Properties.Resources.Distributed_job__0_, newDistributedJob.Guid), NotificationLevel.Debug);
            DataContext = new DistributedJob();

            P2PEditorPresentation.ShowActiveJobsView();
            P2PEditorPresentation.JobDisplay.JobListBox.SelectedIndex = 0;
        }
 private void BackgroundDeletionWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
 {
     P2PEditorPresentation.ShowActiveJobsView();
 }