我的应用程序是WinForms .NET 4(C#),其中一种表单在按下按钮后会自动关闭。
我也试图检查是否有误。关闭/这个。暂停调用但没有找到。
以下是代码:
private void ButtonTestConnection_Click (object sender, System.EventArgs e)
{
this.Enabled = false;
this.Cursor = System.Windows.Forms.Cursors.WaitCursor;
this.ProgressBar.Minimum = 0;
this.ProgressBar.Maximum = 500;
this.ProgressBar.Value = 0;
this.ProgressBar.Visible = true;
this.ButtonTestConnection.Visible = false;
try
{
while (this.ProgressBar.Value < this.ProgressBar.Maximum)
{
// Some proxy code.
this.ProgressBar.Value++;
}
}
catch
{
}
this.ProgressBar.Visible = false;
this.ButtonTestConnection.Visible = true;
this.ProgressBar.Invalidate();
System.Windows.Forms.Application.DoEvents();
System.Threading.Thread.Sleep(10);
this.Cursor = System.Windows.Forms.Cursors.Default;
this.Enabled = true;
System.Windows.Forms.MessageBox.Show(result.ToString());
}
答案 0 :(得分:23)
检查按钮上的属性DialogResult
是否等于None
如果没有,那么当你点击该按钮时表格将被关闭,表格将返回Button的DialogResult属性的设置。
通常,当您复制/粘贴现有表单的按钮但忘记在粘贴按钮上删除原始DialogResult设置时会发生这种情况