Dev Express之ImageComboBoxEdit,RepositoryItemImageComboBox使用方式

 Dev Express之ImageComboBoxEdit,RepositoryItemImageComboBox使用方式

1.使用ImageComboBoxEdit实现下拉框键值数据函数

        public static void InitCmb(ImageComboBoxEdit cmb, DataTable source, string value, string text, bool isDefaultNull)
        {
            ImageComboBoxItem[] items = new ImageComboBoxItem[source.Rows.Count +1];
            int i = 0;
            if (isDefaultNull)
            {
                items[i] = new ImageComboBoxItem();
                items[i].Description = "";
                items[i].Value = "";
                items[i].ImageIndex = -1;
                i++;
            }

            foreach (DataRow dr in source.Rows)
            {
                items[i] = new ImageComboBoxItem();
                items[i].Description = dr[text].ToString();
                items[i].Value = dr[value]; 
                items[i].ImageIndex = -1;
                i++;
            }
            cmb.Properties.Items.Clear();
            cmb.Properties.Items.AddRange(items);            
            cmb.EditValue = items[0].Value;
        }

2.使用RepositoryItemImageComboBox实现GridControl内容Cell内下拉键值数据函数

        public static void InitCmb(RepositoryItemImageComboBox repImageComboBox, DataTable source,string value,string text,bool isDefaultNull)
        {
            ImageComboBoxItem[] items = new ImageComboBoxItem[source.Rows.Count+1];
            int i=0;
            if (isDefaultNull)
            {
                items[i] = new ImageComboBoxItem();
                items[i].Description = "";
                items[i].Value = "";
                items[i].ImageIndex = -1;
                i++;
            }
            foreach (DataRow dr in source.Rows)
            {
                items[i] = new ImageComboBoxItem();
                items[i].Description = dr[text].ToString();
                items[i].Value = dr[value];
                items[i].ImageIndex = -1;
                i++;
            }
            repImageComboBox.Items.AddRange(items);
        }

3.使用RepositoryItemImageComboBox/ImageComboBox与ImageCollection结合实现GridControl内容Cell内下拉图片数据函数

        public static void InitImgCmb(RepositoryItemImageComboBox repImageComboBox, DataTable source, string value, bool isDefaultNull)
        {
            ImageComboBoxItem[] items = new ImageComboBoxItem[source.Rows.Count + 1];
            int i = 0;
            if (isDefaultNull)
            {
                items[i] = new ImageComboBoxItem();
                items[i].Description = "";
                items[i].Value = "";
                items[i].ImageIndex = -1;
                i++;
            }
            foreach (DataRow dr in source.Rows)
            {
                items[i] = new ImageComboBoxItem();
                items[i].Description = "";
                items[i].Value = dr[value];
                if(Int32.Parse(items[i].Value.ToString()) == 0){
                    items[i].ImageIndex = 0;
                }else if(Int32.Parse(items[i].Value.ToString()) == 1){
                    items[i].ImageIndex = 1;
                }else if(Int32.Parse(items[i].Value.ToString()) == 2){
                    items[i].ImageIndex = 2;
                }else if(Int32.Parse(items[i].Value.ToString()) == 3){
                    items[i].ImageIndex = 3;
                }else if(Int32.Parse(items[i].Value.ToString()) == 4){
                    items[i].ImageIndex = 4;
                }
                i++;
            }
            repImageComboBox.Items.AddRange(items);
        }

 

转载于:https://www.cnblogs.com/ultimateWorld/p/5481394.html

这篇文章中我们重点需要实现的是(3)、(4)两项功能,下面我们来介绍具体实现的方法。 第一步,实现ImageComboBoxItem类。 要实现显示图标,当然要给每个项添加与图标相关的信息了,ImageComboBoxItem类应该包括以下内容:文本(Text)、缩进的级别(Level)、图标的索引(ImageIndex、ImageKey),用户数据(Tag)。ImageComboBoxItem类实现了ISerializable接口,实现自定义序列化。ImageComboBoxItem类的类视图如下: 图3 ImageComboxItem类视图 ImageComboBoxItem类的代码如下: [Serializable] [DefaultProperty("Text")] [TypeConverter( typeof(ExpandableObjectConverter))] public class ImageComboBoxItem : IDisposable, ISerializable ...{ Fields#region Fields private ImageComboBox _imageComboBox; private string _text = "ImageComboBoxItem"; private ImageComboBoxItemImageIndexer _imageIndexer; private object _tag; private int _level; #endregion Constructors#region Constructors public ImageComboBoxItem() ...{ } public ImageComboBoxItem(string text) : this(text, -1, 0) ...{ } public ImageComboBoxItem( string text, int imageIndex) : this(text, imageIndex, 0) ...{ } public ImageComboBoxItem( string text, string imageKey) : this(text, imageKey, 0) ...{ } public ImageComboBoxItem( string text, int imageIndex, int level) : this() ...{ _text = text; ImageIndexer.Index = imageIndex; _level = level; } public ImageComboBoxItem( string text, string imageKey, int level) : this() ...{ _text = text; ImageIndexer.Key = imageKey; _level = level; } protected ImageComboBoxItem( SerializationInfo info, StreamingContext context) : this() ...{ Deserialize(info, context); } #endregion Properties#region Properties [Localizable(true)]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值