我有Xamarin表单应用程序,在可移植项目中,我希望有如下所示的进度条:
所以我想把进度条作为黄线。进度在佩奇的ViewModel中定义:
private int _progress;
public int Progress
{
get { return _progress; }
set { SetProperty(ref _progress, value); }
}
它是介于0到100之间的int值。关于图像进展是60。如何在xaml中实现进度条?
根据用户操作,我需要进行从一个调用到三个并行调用的ajax调用。我也想显示进度条。一个进度条用于任意数量的Ajax请求。下面是我要调整的示例代码。谁能建议我如何限制呼叫的数量,以及如何使用一个进度条来实现这一点。
$.when(
// Get the HTML
$.get("/feature/", function(html) {
globalStore.html = html;
}),
// Get the CSS
$.get("/assets/feature.css", function(css) {
globalStore.css =