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

            Notice(Externally.AllDownloadComplete);
        }
示例#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);
        }
示例#3
0
 private void DownloadAllNowMenuItem_OnClick(object sender, RoutedEventArgs e)
 {
     PixivEx.DownloadIllustsInternal(GetImageSourceCopy());
     MessageQueue.Enqueue(Externally.AllDownloadComplete);
 }
示例#4
0
 private void DownloadAllButton_OnClick(object sender, RoutedEventArgs e)
 {
     PixivEx.DownloadIllustsInternal(DownloadList.ToDownloadList.ToList());
     DownloadList.ToDownloadList.Clear();
     MessageQueue.Enqueue(Externally.AllDownloadComplete);
 }
示例#5
0
        private async void DownloadAllButton_OnClick(object sender, RoutedEventArgs e)
        {
            await PixivEx.DownloadIllustsInternal(DownloadList.ToDownloadList.ToList());

            Notice(Externally.AllDownloadComplete);
        }