private void btnCancel_Click(object sender, EventArgs e)
 {
     if (!job.IsDone)
     {
         job.Cancel();
     }
     this.Close();
 }