阻止对话框关闭按钮的单击事件处理程序

时间:2010-03-23 12:03:06

标签: c# .net windows winforms

我有一个用<class>.ShowDialog()显示的对话框。它有一个OK按钮和一个Cancel按钮; OK按钮也有一个事件处理程序。

我想在事件处理程序中进行一些输入验证,如果失败,则通过消息框通知用户并阻止对话框关闭。我不知道怎么做最后一部分(阻止关闭)。

10 个答案:

答案 0 :(得分:131)

您可以通过将表单DialogResult设置为DialogResult.None来取消关闭。

button1是AcceptButton:

的示例
private void button1_Click(object sender, EventArgs e) {
  if (!validate())
     this.DialogResult = DialogResult.None;
}

当用户单击button1并且validate方法返回false时,表单将不会关闭。

答案 1 :(得分:43)

鉴于您已指定需要弹出错误对话框 ,执行此操作的一种方法是将验证移至OnClosing事件处理程序。在此示例中,如果用户对对话框中的问题回答“是”,则表单关闭将中止。

private void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
   // Determine if text has changed in the textbox by comparing to original text.
   if (textBox1.Text != strMyOriginalText)
   {
      // Display a MsgBox asking the user to save changes or abort.
      if(MessageBox.Show("Do you want to save changes to your text?", "My Application",
         MessageBoxButtons.YesNo) ==  DialogResult.Yes)
      {
         // Cancel the Closing event from closing the form.
         e.Cancel = true;
         // Call method to save file...
      }
   }
}

通过设置e.Cancel = true,您将阻止表单关闭。

但是,在线显示验证错误(通过以某种方式突出显示有问题的字段,显示工具提示等)并阻止用户,这将是更好的设计/用户体验从首先选择确定按钮。

答案 2 :(得分:16)

不要为此使用FormClosing事件,您需要允许用户通过取消或单击X来关闭对话框。只需实现OK按钮的Click事件处理程序,并且在您满意之前不要关闭:

private void btnOk_Click(object sender, EventArgs e) {
  if (ValidateControls())
    this.DialogResult = DialogResult.OK;
}

“ValidateControls”是您的验证逻辑。如果出现问题,则返回false。

答案 3 :(得分:3)

这并没有直接回答你的问题(其他已有),但从可用性的角度来看,我宁愿在输入无效的情况下禁用违规按钮。

答案 4 :(得分:3)

使用此代码:

private void btnOk_Click(object sender, EventArgs e) {
  if (ValidateControls())
    this.DialogResult = DialogResult.OK;
}

问题在于,用户必须按两次关闭表单的按钮;

答案 5 :(得分:2)

您可以捕获FormClosing,强制表单保持打开状态。 使用事件参数对象的Cancel属性。

e.Cancel = true;

它应该阻止你的表格关闭。

答案 6 :(得分:0)

我希望我有时间找到一个更好的例子,但是使用现有的Windows窗体验证技术来做这件事要好得多。

http://msdn.microsoft.com/en-us/library/ms229603.aspx

答案 7 :(得分:0)

只需在事件功能中添加一行

即可
private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) 
             {
                this->DialogResult = System::Windows::Forms::DialogResult::None;
             }

答案 8 :(得分:0)

void SaveInfo()
{
blnCanCloseForm = false;
Vosol[] vs = getAdd2DBVosol();
if (DGError.RowCount > 0)
return;

Thread myThread = new Thread(() =>
{
this.Invoke((MethodInvoker)delegate {
    picLoad.Visible = true;
    lblProcces.Text = "Saving ...";
});
int intError = setAdd2DBVsosol(vs);
Action action = (() =>
{
    if (intError > 0)
    {
        objVosolError = objVosolError.Where(c => c != null).ToArray();
        DGError.DataSource = objVosolError;// dtErrorDup.DefaultView;
        DGError.Refresh();
        DGError.Show();
        lblMSG.Text = "Check Errors...";
    }
    else
    {
        MessageBox.Show("Saved All Records...");
        blnCanCloseForm = true;
        this.DialogResult = DialogResult.OK;
        this.Close();
    }

});
this.Invoke((MethodInvoker)delegate {
    picLoad.Visible = false;
    lblProcces.Text = "";
});
this.BeginInvoke(action);
});
myThread.Start();
}

void frmExcellImportInfo_FormClosing(object s, FormClosingEventArgs e)
{
    if (!blnCanCloseForm)
        e.Cancel = true;
}

答案 9 :(得分:-1)

您可以在用户点击“确定”按钮之前检查表单。如果这不是一个选项,那么打开一个消息框,说明出错了,并重新打开前一个状态的表单。