gpt4 book ai didi

C#等待1秒

转载 作者:行者123 更新时间:2023-11-30 13:24:01 25 4
gpt4 key购买 nike

有没有像sleep(seconds)这样的函数,但它不会阻止UI更新?我有这样的代码,如果我在 (letters.Children[Words[index].index] as TextBlock).Text = Words[index].LetterCorrect; 之后放置线程 sleep (我想 sleep 在那之后)它只等待 1 秒,然后 UI 得到更新,但我不希望这样。

private void Grid_Click(object sender, RoutedEventArgs e)
{
if (index == Words.Count() - 1) return;
if ((((e.Source as Button).Content as Viewbox).Child as Label).Content.ToString() == Words[index].LetterCorrect)
{
(letters.Children[Words[index].index] as TextBlock).Text = Words[index].LetterCorrect;

letters.Children.Clear();
LoadWord(++index);
this.DataContext = Words[index];
}
}

最佳答案

尝试使用计时器并让 Elapsed 回调执行您希望在一秒后发生的代码。

关于C#等待1秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6834613/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com