我试图阻止单击按钮(btactive)时文本框和单选按钮的更改状态。我可以使用IsReadOnly
文本框的属性,但我在单选按钮中找不到这个属性,有没有办法阻止单选按钮的更改状态?这是我的代码:
private void btActive_Click(object sender, RoutedEventArgs e)
{
if (check != 0)
{
udhour.IsReadOnly = true;
udmin.IsReadOnly = true;
testvalue.IsReadOnly = true;
//How can I set Isreadonly for radio button
}
}