发布网友 发布时间:2024-10-07 02:27
共2个回答
热心网友 时间:2024-10-26 13:39
在查询按钮事件中show出进度窗体就可以了热心网友 时间:2024-10-26 13:40
是这种吗?
这种是用 progressBar 加 timer 制作出来的。。。
代码如下:
private void timer1_Tick(object sender, EventArgs e)
{
progressBar1.Value = i;
i+=2;
if (i ==100)
{
timer1.Enabled = false;
this.DialogResult = DialogResult.OK;
timer1.Stop();
}
}
timer 属性如图:
希望能帮上你。。。。。。