Xamarin Forms 计时器不显示计时器前的 运行 代码
Xamarin Forms Timer Doesn't Show Run Code Before Timer
谁能告诉我为什么这段代码不起作用?
enter image description here
Random rnd = new Random();
public PlayGame()
{
InitializeComponent();
Stopwatch stopwatch = Stopwatch.StartNew();
BackgroundColor = Color.Blue;
while (true)
{
if (stopwatch.ElapsedMilliseconds >= rnd.Next(1000,5000))
{
break;
}
System.Threading.Thread.Sleep(1);
}
BackgroundColor = Color.Red;
}
我期望看到的是新页面的背景颜色是蓝色,1-5秒后,应该变成红色。
我 实际上 看到的是,当我单击应该指向这个新页面的按钮时,它没有显示蓝色背景 - 它只是暂停 1-5 秒,然后直接变为红色。
有人知道为什么吗?
如果您想在 5 秒后将背景颜色从蓝色更改为红色。
public partial class PlayGame : ContentPage
{
public PlayGame ()
{
InitializeComponent();
}
protected override void OnAppearing()
{
base.OnAppearing();
BackgroundColor = Color.Blue;
Device.StartTimer(TimeSpan.FromSeconds(5), () =>
{
BackgroundColor = Color.Red;
return false;
});
}
}
谁能告诉我为什么这段代码不起作用?
enter image description here
Random rnd = new Random();
public PlayGame()
{
InitializeComponent();
Stopwatch stopwatch = Stopwatch.StartNew();
BackgroundColor = Color.Blue;
while (true)
{
if (stopwatch.ElapsedMilliseconds >= rnd.Next(1000,5000))
{
break;
}
System.Threading.Thread.Sleep(1);
}
BackgroundColor = Color.Red;
}
我期望看到的是新页面的背景颜色是蓝色,1-5秒后,应该变成红色。
我 实际上 看到的是,当我单击应该指向这个新页面的按钮时,它没有显示蓝色背景 - 它只是暂停 1-5 秒,然后直接变为红色。
有人知道为什么吗?
如果您想在 5 秒后将背景颜色从蓝色更改为红色。
public partial class PlayGame : ContentPage
{
public PlayGame ()
{
InitializeComponent();
}
protected override void OnAppearing()
{
base.OnAppearing();
BackgroundColor = Color.Blue;
Device.StartTimer(TimeSpan.FromSeconds(5), () =>
{
BackgroundColor = Color.Red;
return false;
});
}
}