我正在编写 C# 编码,单击提交按钮时遇到问题,并选择了几种不同的复选框答案组合,它们没有正确更新为“正确”或“不正确”。如果仅选中 Answer2 和 Answer3,如何将代码调整到仅显示“正确”标签的位置?即使选择了正确的答案之一,也会显示“不正确”。
if (Answer2.Checked && Answer3.Checked == true)
{
lblQuestionResult4.ForeColor = System.Drawing.Color.Green;
lblQuestionResult4.Text = "Correct";
}
else
{
if (Answer1.Checked && Answer4.Checked == true)
{
lblQuestionResult4.ForeColor = System.Drawing.Color.Red;
lblQuestionResult4.Text = "Incorrect";
}