我有一个以编程方式创建的单选按钮,在某些情况下我需要将此单选按钮设为只读。我也试过RadioButton.IsEnable = false;但是之后我的应用程序中没有显示任何内容,它看起来像是可见性。收到我的单选按钮。
此代码我用于创建单选按钮:
RadioButton radbtn = new RadioButton();
radbtn.Name = choicelist[ctr].ID;
radbtn.Content = choicelist[ctr].Name;
radbtn.Foreground = new SolidColorBrush(Colors.Black);
radbtn.VerticalAlignment = System.Windows.VerticalAlignment.Center;
我想将此单选按钮设置为只读。
答案 0 :(得分:0)
我找到了解决方案,这对我有用。
radbtn.IsHitTestVisible = false;