2

我有一个绑定到从磁盘加载图像的对象集合的 GridView。

当对象变得可见时,它们被放入堆栈,并且图像按顺序从堆栈中加载。

问题是 GetFolderAsync() 在包含对象的 ScrollViewer 停止滚动之前不会返回。

代码如下:

    public static async Task<StorageFolder> GetFileFolderAsync(String fileUrl)
    {
        try
        {
            string filePathRelative = DownloadedFilePaths.GetRelativeFilePathFromUrl(fileUrl);
            string[] words = filePathRelative.Split('\\');
            StorageFolder currentFolder = await DownloadedFilePaths.GetAppDownloadsFolder();
            for (int i = 0; (i < words.Length - 1); i++)
            {
                //this is where it "waits" for the scroll viewer to slow down/stop
                currentFolder = await currentFolder.GetFolderAsync(words[i]);
            }
            return currentFolder;
        }
        catch (Exception)
        {
            return null;
        }
    }

我已将其精确定位到它获取包含图像的文件夹的那一行。这甚至是获取嵌套文件夹的正确方法吗?

4

2 回答 2

1

您可以尝试使用在线程池线程上ConfigureAwait(false)运行循环:for

public static async Task<StorageFolder> GetFileFolderAsync(String fileUrl)
{
    try
    {
        string filePathRelative = DownloadedFilePaths.GetRelativeFilePathFromUrl(fileUrl);
        string[] words = filePathRelative.Split('\\');
        // HERE added ConfigureAwait call
        StorageFolder currentFolder = await
            DownloadedFilePaths.GetAppDownloadsFolder().ConfigureAwait(false);
        // Code that follows ConfigureAwait(false) call will (usually) be 
        // scheduled on a background (non-UI) thread.
        for (int i = 0; (i < words.Length - 1); i++)
        {
            // should no longer be on the UI thread, 
            // so scrollviewer will no longer block
            currentFolder = await currentFolder.GetFolderAsync(words[i]);
        }
        return currentFolder;
    }
    catch (Exception)
    {
        return null;
    }
}

请注意,在上述情况下,由于没有在 UI 上完成任何工作,您可以使用ConfigureAwait(false). 例如,以下内容将不起作用,因为在 之后有一个与 UI 相关的调用ConfigureAwait

// HERE added ConfigureAwait call
StorageFolder currentFolder = await
    DownloadedFilePaths.GetAppDownloadsFolder().ConfigureAwait(false);
// Can fail because execution is possibly not on UI thread anymore:
myTextBox.Text = currentFolder.Path;
于 2013-04-12T20:23:43.213 回答
0

事实证明,我用来确定对象可见性的方法阻塞了 UI 线程。

我有一个绑定到从磁盘加载图像的对象集合的 GridView。

对象在变得可见时被放入堆栈,并且图像按顺序从堆栈中加载。

问题是 GetFolderAsync() 在包含对象的 ScrollViewer 停止滚动之前不会返回。

于 2013-04-12T22:14:03.193 回答