maui C# 定时跳转页面
时间: 2023-06-25 11:08:24 浏览: 135
你可以使用C#中的Timer类来实现定时跳转页面。以下是一个示例代码:
```csharp
using System;
using System.Windows.Forms;
namespace TimerExample
{
public partial class Form1 : Form
{
private Timer timer;
public Form1()
{
InitializeComponent();
timer = new Timer();
timer.Interval = 5000; // 5秒钟
timer.Tick += new EventHandler(timer_Tick);
timer.Start();
}
private void timer_Tick(object sender, EventArgs e)
{
// 跳转页面
Form2 form2 = new Form2();
form2.Show();
this.Hide();
timer.Stop();
}
}
}
```
在上面的代码中,我们创建了一个Timer对象,并将其间隔设置为5秒钟。然后,我们订阅了Tick事件,并在事件处理程序中实现了页面跳转的逻辑。当时间间隔到达时,Tick事件将触发,跳转到Form2页面。同时,需要将当前页面隐藏并停止计时器。
阅读全文