1

这是我的代码:

public bool radioButtons()
    {
        if (!userRadioButton.Checked && !adminRadioButton.Checked)
        {
            MessageBox.Show("You must select an account type");
            return false;
        }
        else
        {
            return true;
        }
    }

现在,当用户名为空时,它会弹出两次消息框?

4

2 回答 2

2

我认为你想要实现的是这样的

public bool radioButtons()
{
    if (!userRadioButton.Checked && !adminRadioButton.Checked)
    {
        MessageBox.Show("You must select an account type");
        return false;
    }
    else
    {
        return true;
    }
}

并在按钮单击事件中。

public void button1_Click(object sender, EventArgs e)
{
    bool a = radioButtons();
    if (a)   
    {
        // a is true do what you want.
    }
}
于 2013-09-29T11:16:07.713 回答
0

你需要改变两件事:

  1. radioButtons方法不需要接受布尔值
  2. 你应该a先声明

您的代码应如下所示:

public bool radioButtons()
{
    if (!userRadioButton.Checked && !adminRadioButton.Checked)
    {
        MessageBox.Show("You must select an account type");
        return false;
    }
    else
    {
        return true;
    }
}

public void button1_Click(object sender, EventArgs e)
{

    if (radioButtons())
    {
       //Your code here
    }
}
于 2013-09-29T11:16:54.617 回答