我有一个简单的问题。我该如何暂停程序?我想非常缓慢地改变图片。
我的代码:
private void button2_Click(object sender, EventArgs e){
Image picture1 = Program.Properties.Resources.picture1;
Image picture2 = Program.Properties.Resources.picture2;
Button1.Image = picture1
//Here I want pause
Button1.Image = picture2
}
答案 0 :(得分:2)
如果你想要程序代码(比如你的例子),没有定时器而没有锁定UI:
await Task.Delay(1000)
答案 1 :(得分:-1)