指定した秒数後に特定の処理をする場合です。
1 2 3 4 5 6 |
Device.StartTimer(TimeSpan.FromSeconds(10), () => { DisplayAlert("time up", "10秒経ちました", "OK"); return false; }); |
return trueにするとアラートが10秒ごとに重ねて表示されます。
指定した秒数後に特定の処理をする場合です。
1 2 3 4 5 6 |
Device.StartTimer(TimeSpan.FromSeconds(10), () => { DisplayAlert("time up", "10秒経ちました", "OK"); return false; }); |
return trueにするとアラートが10秒ごとに重ねて表示されます。