我在 .net windows 应用程序中有两个表单,我想在第二个页面加载之前设置一个进度条,因为我的第二个页面在 10 到 15 秒后加载,所以,我想运行进度条直到第二个页面加载完成。
这怎么可能?
这可能对你有好处。
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
timer1.Enabled = false;
int d;
for (d = 0; d <= 100; d++)
progressBar1.Value = d;
Hide();
new Form1().Show();
}
}
}