zoukankan      html  css  js  c++  java
  • gridLookUpEdit字典控件 模糊查询

    gridLookUpEdit字典控件 模糊查询

    复制代码

    this.gridLookUpEdit1.Properties.DataSource = dt;
                        this.gridLookUpEdit1.Properties.DisplayMember = dt.Columns[2].ColumnName;
                        this.gridLookUpEdit1.Properties.ValueMember = dt.Columns[0].ColumnName;
                         
                        this.gridLookUpEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
                        this.gridLookUpEdit1.Properties.View.BestFitColumns();
                        this.gridLookUpEdit1.Properties.ShowFooter = false;
                        this.gridLookUpEdit1.Properties.View.OptionsView.ShowAutoFilterRow = true; //显示不显示grid上第一个空行,也是用于检索的应用
                        this.gridLookUpEdit1.Properties.AutoComplete = false;
                        this.gridLookUpEdit1.Properties.ImmediatePopup = true;
                        this.gridLookUpEdit1.Properties.PopupFilterMode = DevExpress.XtraEditors.PopupFilterMode.Contains;
                        this.gridLookUpEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
  • 相关阅读:
    改造二叉树
    汽车加油行驶问题
    [SHOI2012]回家的路
    子串
    P3558 [POI2013]BAJ-Bytecomputer
    HDU
    UVALive
    ZOJ
    HDU
    牛客小白月赛2 题解
  • 原文地址:https://www.cnblogs.com/grj001/p/12225153.html
Copyright © 2011-2022 走看看