xamarin UWP ActivityIndicator

在xamarin的UWP平台使用ActivityIndicator时,如果你时后台创建的这个对象,请设置他的宽度,不然在UWP平台下会发现找不这个对象,其实是在这个平台和特点版本下的宽度没设置,导致有这个对象,但是无法看到。

 ActivityIndicator indicator = new ActivityIndicator
{
Color = new Color(.),
WidthRequest=,
IsRunning = true,
HorizontalOptions = LayoutOptions.CenterAndExpand,
VerticalOptions = LayoutOptions.CenterAndExpand,
};

-------踩坑记录。

上一篇:SVN更新时,校验和不匹配


下一篇:hdu 5615 Jam's math problem(十字相乘判定)