为什么MahApps.Metro ShowProgressAsync对话框意外重绘? (总是灰色的)

时间:2015-11-30 20:02:24

标签: c# wpf async-await mahapps.metro

所以,我猜了一下,但看起来我的Mahapps.Metro ShowProgressAsync对话框很快就会重绘,所以它总是看起来很灰白。

我有一个程序正在查看基于正则表达式的某些匹配的文档,并且我已经设置了一个进度条,但是对话框只显示了主应用程序,然后只是将对话框显示为灰色(就像它快速加载或冷冻一样)。

如果我在那里放置某种停止,就像一个消息框,那么一切都很好。我不认为我的代码每次都应该重新绘制对话框。我认为它应该只是更新进度条。这是我的代码。

在这个示例代码中,我没有显示我在列表中添加页码的逻辑,而是一遍又一遍地添加了数字42,只是为了缩短它

    private async void RegexMatchProgressBar(Regex regex, string myText, Microsoft.Office.Interop.Word.Document myDoc)
    {
        int charCount = myDoc.Application.ActiveDocument.Characters.Count;

        var myProgressAsync = await this.ShowProgressAsync("WAIT WHILE WE DO STUFF!", "Searching...");
        myProgressAsync.Maximum = charCount;
        myProgressAsync.Minimum = 0;

        Dictionary<String, List<int>> table = new Dictionary<string, List<int>>();
        foreach (Match match in regex.Matches(myText))
        {
            if (!table.ContainsKey(match.Value))
            {
                List<int> page = new List<int>();
                page.Add(42);
                table.Add(match.Value, page);
                myProgressAsync.SetProgress((double)match.Index);

            }
        }
        myProgressAsync.SetProgress(charCount);
        await myProgressAsync.CloseAsync();
    }

1 个答案:

答案 0 :(得分:9)

您的Operation需要在不同的主题上:

private async void RegexMatchProgressBar(Regex regex, string myText, Microsoft.Office.Interop.Word.Document myDoc)
{
    int charCount = myDoc.Application.ActiveDocument.Characters.Count;

    var myProgressAsync = await this.ShowProgressAsync("WAIT WHILE WE DO STUFF!", "Searching...");
    myProgressAsync.Maximum = charCount;
    myProgressAsync.Minimum = 0;

    await Task.Run(() => 
    {
        Dictionary<String, List<int>> table = new Dictionary<string, List<int>>();
        foreach (Match match in regex.Matches(myText))
        {
            if (!table.ContainsKey(match.Value))
            {
                List<int> page = new List<int>();
                page.Add(42);
                table.Add(match.Value, page);
                myProgressAsync.SetProgress((double)match.Index);

            }
        }

        myProgressAsync.SetProgress(charCount);
    });

    await myProgressAsync.CloseAsync();
}

我不知道这是否是故意的,但是这个方法做了“火与忘记”async void。我建议将方法签名更改为async task以在另一方等待它。此外,Exception将以这种方式处理:Exception Handling