This commit is contained in:
adrianknight89 2016-10-20 15:00:14 -05:00 коммит произвёл Jason Smith
Родитель 9572c0f7a7
Коммит d24f3e5438
1 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -19,14 +19,16 @@ namespace Xamarin.Forms.Platform.Android
{
base.OnElementChanged(e);
if (e.OldElement == null)
if (e.NewElement != null)
{
var progressBar = CreateNativeControl();
if (Control == null)
{
var progressBar = CreateNativeControl();
SetNativeControl(progressBar);
SetNativeControl(progressBar);
}
UpdateProgress();
}
UpdateProgress();
}
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)