Example #1
0
        private async void DownloadAllNowMenuItem_OnClick(object sender, RoutedEventArgs e)
        {
            DownloadList.ToDownloadList.Clear();
            await PixivEx.DownloadIllustsInternal((IEnumerable <Illustration>) ImageListView.ItemsSource);

            Notice(Externally.AllDownloadComplete);
        }
Example #2
0
        private async void DownloadAllNowMenuItem_OnClick(object sender, RoutedEventArgs e)
        {
            DownloadList.ToDownloadList.Clear();
            await PixivEx.DownloadIllustsInternal((IEnumerable <Illustration>) ImageListView.ItemsSource, Path.Combine(user.Name, $"{(atUploadSelector ? "δ½œε“" : "攢藏")}"));

            messageQueue.Enqueue(Externally.AllDownloadComplete);
        }
Example #3
0
 private void DownloadAllNowMenuItem_OnClick(object sender, RoutedEventArgs e)
 {
     PixivEx.DownloadIllustsInternal(GetImageSourceCopy());
     MessageQueue.Enqueue(Externally.AllDownloadComplete);
 }
Example #4
0
 private void DownloadAllButton_OnClick(object sender, RoutedEventArgs e)
 {
     PixivEx.DownloadIllustsInternal(DownloadList.ToDownloadList.ToList());
     DownloadList.ToDownloadList.Clear();
     MessageQueue.Enqueue(Externally.AllDownloadComplete);
 }
Example #5
0
        private async void DownloadAllButton_OnClick(object sender, RoutedEventArgs e)
        {
            await PixivEx.DownloadIllustsInternal(DownloadList.ToDownloadList.ToList());

            Notice(Externally.AllDownloadComplete);
        }