找回密码
 立即注册
问题
我有一个包含 if 语句的方法:
  1. private void ValidateInputs()
  2.         {
  3.             if (txtBox_eventName.Text.Trim() == string.Empty)
  4.             {
  5.                 MessageBox.Show("Please enter a valid event name", "Action Required", MessageBoxButtons.OK, MessageBoxIcon.Error);
  6.                 txtBox_eventName.Focus();
  7.                 return;
  8.             }

  9.             if (nud_noOfGuests.Value < 10 || nud_noOfGuests.Value > 200)
  10.             {
  11.                 MessageBox.Show("Please enter no of guests between 10 and 200", "Action Required", MessageBoxButtons.OK, MessageBoxIcon.Error);
  12.                 return;
  13.             }

  14.             if (radBtn_primeRib.Checked == false && radBtn_chickenMarsala.Checked == false && radBtn_gardenLasagna.Checked == false)
  15.             {
  16.                 MessageBox.Show("Please make an Entree choice", "Action Reuired", MessageBoxButtons.OK, MessageBoxIcon.Error);
  17.                 return;
  18.             }
  19.         }
复制代码

我有第二种方法可以做其他事情。我在点击事件中调用这两种方法。如果满足第一种方法中的任何 if 条件,我想停止程序执行第二种方法。

我调用这两种方法的点击事件是:
  1. private void btn_createEvent_Click(object sender, EventArgs e)
  2.         {
  3.             ValidateInputs();            
  4.             SetValues();

  5.             calcCharges = new CateringEvent(eventName, noOfGuests, selectedEntre, barOption, wineOption);
  6.             lbl_calcEntreCharges.Text = calcCharges.EntreCharge.ToString("C2");
  7.             lbl_calcDrinkCharges.Text = calcCharges.DrinksCharge.ToString("C2");
  8.             lbl_calcSurcharge.Text = calcCharges.Surcharge.ToString("C2");
  9.             lbl_calcTotalCharges.Text = calcCharges.TotalCharge.ToString("C2");

  10.             txtBox_eventName.Enabled = false;
  11.             btn_createEvent.Enabled = false;
  12.             btn_modifyEvent.Enabled = true;
  13.         }
复制代码

我希望 ValidateInputs() 仅在 SetValues() 中的 if 条件都不起作用时运行。在这种情况下,我怎样才能做到这一点?

回答
您只需要将 ValidateInputs 方法的返回类型更改为 bool。
  1. private bool ValidateInputs()
  2. {
  3.     if (txtBox_eventName.Text.Trim() == string.Empty)
  4.     {
  5.         MessageBox.Show("Please enter a valid event name", "Action Required", MessageBoxButtons.OK, MessageBoxIcon.Error);
  6.         txtBox_eventName.Focus();
  7.         return false;
  8.     }

  9.     if (nud_noOfGuests.Value < 10 || nud_noOfGuests.Value > 200)
  10.     {
  11.         MessageBox.Show("Please enter no of guests between 10 and 200", "Action Required", MessageBoxButtons.OK, MessageBoxIcon.Error);
  12.         return false;
  13.     }

  14.     if (radBtn_primeRib.Checked == false && radBtn_chickenMarsala.Checked == false && radBtn_gardenLasagna.Checked == false)
  15.     {
  16.         MessageBox.Show("Please make an Entree choice", "Action Reuired", MessageBoxButtons.OK, MessageBoxIcon.Error);
  17.         return false;
  18.     }
  19.     return true;
  20. }
复制代码

然后将点击方法更改为:
  1. if (ValidateInputs() == false) // or if(!ValidateInputs())
  2.    return;
  3. SetValues();
复制代码






上一篇:导入json ES6 Node.js 中的扩展引发错误
下一篇:opencv imwrite,图像旋转