Пример #1
0
        internal static void infDlZip(List <Manga> mangaLst)
        {
            LelScan lel = new LelScan();

            Manga.getInfosMangas(mangaLst, lel);
            Outils.dlMangaWebClient(mangaLst);
            Outils.zipAndDel(mangaLst);
        }
Пример #2
0
        private void btn_downloadSelectedChapters_Click(object sender, EventArgs e)
        {
            allButtonDisable();
            LelScan         lel    = new LelScan();
            List <Chapitre> cDlLst = new List <Chapitre>();

            foreach (Chapitre c in lb_chap.SelectedItems)
            {
                cDlLst.Add(c);
            }
            Chapitre.getInfoChapitres(cDlLst, lel);
            Outils.dlChapWebClient(cDlLst);
            Outils.zipAndDel(cDlLst);
            MessageBox.Show("Les téléchargements des chapitres selectionnés sont terminés", "Cool", MessageBoxButtons.OK, MessageBoxIcon.Information);
            allButtonEnable();
        }