【发布时间】:2015-07-29 16:15:43
【问题描述】:
这是我当前加载图像的代码:
System.Uri uri;
System.Uri.TryCreate (imageURI, UriKind.Absolute, out uri);
_companyImage.Source = ImageSource.FromUri (uri);
问题是整个程序都要等待这个任务完成,我想异步加载图片但是不知道如何异步创建图片源。
【问题讨论】:
标签: c# mobile asynchronous xamarin xamarin.forms