#region 给GridLookUpEdit填入数据
private void GetgridLookUpData()
{
var service = new SIMUBUSINESSLOGICDATA.SRSYSTEMBPJDQOperatorService.BpjdqSystemOperatorSystemClient(WebServiceApp.NetTcpBinding(), WebServiceApp.BpjdqSystemEndpoingAddress());
service.Open();
service.BeginGetTDictionaryInfoList(delegate(IAsyncResult asResult)
{
if (asResult.IsCompleted)
{
_dictionarylist = service.EndGetTDictionaryInfoList(asResult);
Invoke(new Action(() =>
{
gridLookUpEdit1.Properties.View.OptionsBehavior.AutoPopulateColumns = false;
this.gridLookUpEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
this.gridLookUpEdit1.Properties.View.BestFitColumns();
this.gridLookUpEdit1.Properties.ShowFooter = false;
this.gridLookUpEdit1.Properties.View.OptionsView.ShowAutoFilterRow = false; //显示不显示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.DisableTextEditor; //配置,用于像文本框那样呀,可自己录入,选择,些处是枚举,可自行设置.
gridLookUpEdit1.Properties.NullText = "--请选择--";
gridLookUpEdit1.Properties.ValueMember = "F_DictonaryName"; //相当于editvalue
gridLookUpEdit1.Properties.DisplayMember = "F_DictonaryName"; //相当于text
gridLookUpEdit1.Properties.DataSource = _dictionarylist;
}));
}
}, null);
}
#endregion