码迷,mamicode.com
首页 > 其他好文 > 详细

[DevExpress]利用LookUpEdit实现类似自动提示效果

时间:2014-10-22 00:30:15      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   使用   sp   

原文:[DevExpress]利用LookUpEdit实现类似自动提示效果

关键代码:

        public static void BindWithAutoCompletion(this LookUpEdit lue, object source, string value, string displayName, string prompttext)
        {
            lue.Properties.DataSource = source;
            lue.Properties.DisplayMember = displayName;
            lue.Properties.ValueMember = value;
            lue.Properties.NullText = prompttext;
            lue.Properties.TextEditStyle = TextEditStyles.Standard;
            lue.Properties.SearchMode = SearchMode.AutoFilter;
        }

使用代码:

this.lookUpEdit1.BindWithAutoCompletion(PersonList, "Name", "Name", "输入需要搜索的....");

实现效果:

bubuko.com,布布扣

bubuko.com,布布扣

希望有所帮助!bubuko.com,布布扣

[DevExpress]利用LookUpEdit实现类似自动提示效果

标签:style   blog   http   color   io   os   ar   使用   sp   

原文地址:http://www.cnblogs.com/lonelyxmas/p/4041966.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!