当我单击一个单选按钮时,它会在我的富文本框中设置文本。如果我点击另一个,它什么也不做。是否可以用另一个单选按钮替换文本?
private void M_buttonComment_CheckedChanged(object sender, EventArgs e)
{
if (M_buttonComment.Checked) //If checked == true
{
// Set the text to be "Comment" //
M_TitleTextBox.Text = "Comment - ";
}
}
相关分类