随笔分类 - DEV
DEV ComboBoxEdit 实现 键值
摘要:定义combox绑定类:public class ComboxData { public string Text{ set; get; } public string Value{ set; get; } public override string ToString() { return Text; } }具体绑定:DevExpress.XtraEditors.ComboBoxEdit combox;ComboxData data = new ComboxData(); data.Text ="需要显示的文本"; data.Value= “类似Tag功能”; combox
阅读全文
DEV ImageComboxEdit 使用
摘要:初始化: DevExpress.XtraEditors.ImageComboBoxEdit imageComboBox=new DevExpress.XtraEditors.ImageComboBoxEdi();图片容器: DevExpress.Utils.ImageCollection imageCollection;设置ImageComboxEdit 的图片集合: imageComboBox.Properties.SmallImages=imageCollection;添加子项: ImageComboBoxItem item = new ImageComboBoxItem(); item.
阅读全文
DEV ComboBoxEdit 禁止 编辑
摘要:winform中的ComBox都知道有DropDownStyle:当我们选中DropDownList就实现了我们想要的功能那么在ComboBoxEdit中呢?找到TextEditStyle:选中 DisableTextEditor属性 就可以了
阅读全文
浙公网安备 33010602011771号