Make thread safe and integrate with Libation UI

This commit is contained in:
Michael Bucari-Tovo 2022-05-14 14:39:46 -06:00
parent 50c35ed519
commit 73a5d76503
5 changed files with 66 additions and 26 deletions

View file

@ -1,4 +1,5 @@
using LibationFileManager;
using ApplicationServices;
using LibationFileManager;
using LibationWinForms.ProcessQueue;
using System;
using System.Windows.Forms;
@ -9,7 +10,7 @@ namespace LibationWinForms
{
private void Configure_ProcessQueue()
{
//splitContainer1.Panel2Collapsed = true;
productsGrid.LiberateClicked += (_, lb) => processBookQueue1.AddDownloadDecrypt(lb);
processBookQueue1.popoutBtn.Click += ProcessBookQueue1_PopOut;
}
@ -39,10 +40,5 @@ namespace LibationWinForms
this.Focus();
}
}
private void button1_Click(object sender, EventArgs e)
{
processBookQueue1.AddDownloadDecrypt(productsGrid.List);
}
}
}