在单个消息框中显示多个错误消息

时间:2016-09-10 10:29:18

标签: c# validation messagebox

我目前正在开发一个带有产品维护页面的桌面应用程序,我正在寻找一种在单个消息框中显示所有验证错误的方法。

我使用以下代码显示每个验证错误一个消息框:(验证绑定到保存按钮)

        if ((Convert.ToInt32(txtQuantity.Text)) > 20000)
        {
            MessageBox.Show("Maximum quantity is 20,000!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            txtQuantity.Focus();
            return;
        }

        if ((Convert.ToInt32(txtQuantity.Text)) <= (Convert.ToInt32(txtCriticalLevel.Text)))
        {
            MessageBox.Show("Quantity is lower than Critical Level.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            txtQuantity.Focus();
            return;
        }

        if (txtCriticalLevel.Text == "0")
        {
            MessageBox.Show("Please check for zero values!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            txtCriticalLevel.Focus();
            return;
        }

我想让用户一次性了解所有错误,而不是每个消息框一个接一个地知道它们。

提前谢谢! :)

2 个答案:

答案 0 :(得分:1)

您可以使用StringBuilder并在其中添加错误:

StringBuilder sb = new StringBuilder();


 if ((Convert.ToInt32(txtQuantity.Text)) > 20000)
        {
              sb.AppendLine("Maximum quantity is 20,000!");            
        }



if ((Convert.ToInt32(txtQuantity.Text)) <= (Convert.ToInt32(txtCriticalLevel.Text)))
    {
       sb.AppendLine("Quantity is lower than Critical Level.");
    }

....
  MessageBox.Show(sb.ToString(), "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);

答案 1 :(得分:0)

快速解决方案将是:

    string errorMessages = String.Empty;

    if ((Convert.ToInt32(txtQuantity.Text)) > 20000)
    {
        errorMessages +="- Maximum quantity is 20,000!\r\n";
        txtQuantity.Focus();
        return;
    }

    if ((Convert.ToInt32(txtQuantity.Text)) <= (Convert.ToInt32(txtCriticalLevel.Text)))
    {
        errorMessages += "- Quantity is lower than Critical Level.\r\n";
        txtQuantity.Focus();
        return;
    }

    if (txtCriticalLevel.Text == "0")
    {
        errorMessages += "- Please check for zero values!\r\n";
        txtCriticalLevel.Focus();
        return;
    }

    if(!String.IsNullOrEmpty(errorMessages))
        MessageBox.Show(errorMessages, "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);