DevExpress 使用示例

CheckEdit版的RadioButton

在DevExpress中已经看不到RadioButton控件,只有RadioGroup,明显不符合我们的要求。

当然,只需要使用CheckEdit即可,示例如下:

CheckEdit.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;

此外,确保在您所设定的所有单选按钮设置RadioGroupIndex相同的索引编号。


ComboBoxEdit、TreeList设置不可编辑

ComboBoxEdit.Properties.TextEditStyle的值设置为DisableTextEditor;

TreeList.OptionsBehavior.Editable设置为False;

你可能感兴趣的:(DevExpress)