我想創建一個if語句來提示我是否確定要檢查複選框。如果該複選框已被選中,則取消選中該複選框。以下是我似乎無法工作的內容。謝謝!如果有人有這樣做的簡單方法,請告知。如果複選框選中其他操作取消選中
if (checkBox15.Checked == false)
{
MessageBox.Show("Are you sure you want to check this?", "Prompt", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
Updatelist();
}
else
{
checkBox15.Checked = false;
return;
}
}
else if (checkBox15.Checked == true)
{
checkBox15.Checked = false;
return;
}
在什麼情況下是你的代碼?你使用的是什麼UI?窗體形式? – RononDex
這是MouseClick事件。 –