标签:style class blog code java http
wpf调用wcf时,第一次访问总耗时到达几秒,影响界面的用户体验,因此在wpf加载界面和加载数据时采用异步加载,即异步访问wcf服务, 由于是否采用异步加载和服务端无关,仅仅由客户端自己根据需要来选择,则我们只需要在客户端(WPF)程序中采用异步的方法。如下:
//1、创建一个异步对象,访问wcf
Func<string, string, List<NodeItem>> GetDataFromWCF = new Func<string, string, List<NodeItem>>(delegate(string _userCode, string _query) { //此处写客户端调用WCF服务的代码
return standardVideoTreeData.LoadData(_userCode, _query); });
//2、执行异步对象的异步方法 BeginInvoke
IAsyncResult result = GetDataFromWCF.BeginInvoke(this.userCode, this.query, (res) => { List<NodeItem> tvsource = myFunc.EndInvoke(res); //3、更新客户端界面数据
SetData(tvsource); }, null); //更新客户端界面数据
private void SetData(List<NodeItem> tvsource) { this.Dispatcher.BeginInvoke(new Action(() => { tree.ItemsSource = tvsource; loading_grid.Visibility = Visibility.Collapsed; })); }
标签:style class blog code java http
原文地址:http://www.cnblogs.com/simpleZone/p/3783534.html