我写了下面的代码:
private void DisplayStartUps()
{
Form2 dialog = new Form2();
if (dialog.ShowDialog(this) == DialogResult.OK)
{
// Read the contents of testDialog's TextBox.
totalTeams = dialog.NumOfTeams;
}
dialog.Dispose();
}
当表格2打开时,我点击顶部的“红色x”来关闭表格。我收到了消息:
TargetInvocationException未处理
这是什么意思以及如何解决它?