zoukankan      html  css  js  c++  java
  • 异步调用WCF服务,并将数据填入GridLookUpEdit中

    #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

    You can reach me by surfing the web ---- huntjobs.cn,or sending e-mails to me,Here is my qq MailBox:1424870395@qq.com
  • 相关阅读:
    RabbitMQ与AMQP协议详解
    MemCache超详细解读
    ASP.NET Web API通过ActionFilter来实现缓存
    ASP.NET Web API 通过Authentication特性来实现身份认证
    什么是CSR证书申请文件?
    跨平台的 SQL 客户端
    Java生成公私钥对
    git 删除错误提交的commit
    ServiceStack.Text反序列化lowercase_underscore_names格式的JSON
    .NET AES加解密(128位)
  • 原文地址:https://www.cnblogs.com/HedgehogBlog/p/3469669.html
Copyright © 2011-2022 走看看