зеркало из https://github.com/DeGsoft/maui-linux.git
Fix ProgressBar renderer (#439)
This commit is contained in:
Родитель
9572c0f7a7
Коммит
d24f3e5438
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче