This commit is contained in:
Michael Bucari-Tovo 2022-05-14 03:16:48 -06:00
parent 676af0210b
commit eeb4f4681a
10 changed files with 1502 additions and 752 deletions

View file

@ -1,19 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using LibationFileManager;
using LibationFileManager;
using LibationWinForms.ProcessQueue;
using System;
using System.Windows.Forms;
namespace LibationWinForms
{
public partial class Form1
{
private void Configure_ProcessQueue()
{
//splitContainer1.Panel2Collapsed = true;
processBookQueue1.popoutBtn.Click += ProcessBookQueue1_PopOut;
public partial class Form1
{
private void Configure_ProcessQueue()
{
//splitContainer1.Panel2Collapsed = true;
processBookQueue1.popoutBtn.Click += ProcessBookQueue1_PopOut;
}
private void ProcessBookQueue1_PopOut(object sender, EventArgs e)
@ -42,5 +39,10 @@ namespace LibationWinForms
this.Focus();
}
}
private void button1_Click(object sender, EventArgs e)
{
processBookQueue1.AddDownloadDecrypt(productsGrid.List);
}
}
}