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
  • 相关阅读:
    nyoj 202红黑树 (搜索)
    POJ 3281 Dining(最大流)
    nyoj-488 素数环 +nyoj -32 组合数 (搜索)
    LeetCode100:Same Tree
    LeetCode283:Move Zeros
    Leetcode226:Invert Binary Tree
    LeetCode258:Add Digits
    Leetcode237:Delete Node in a Linked List
    LeetCode7:Reverse Integer
    LeetCode292:Nim Game
  • 原文地址:https://www.cnblogs.com/HedgehogBlog/p/3469669.html
Copyright © 2011-2022 走看看