0

我有一个以编程方式创建的单选按钮,在某些情况下我需要将此单选按钮设置为只读。我也试过 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;

我想将此单选按钮设置为只读。

4

1 回答 1

0

嗨,我找到了解决方案,它对我有用。

radbtn.IsHitTestVisible = false;
于 2013-01-11T12:14:04.690 回答