зеркало из https://github.com/DeGsoft/maui-linux.git
Fix crash when ItemsSource is set to null (#320)
This commit is contained in:
Родитель
417f7493d2
Коммит
5b85aafcd6
|
@ -190,7 +190,8 @@ namespace Xamarin.Forms.Platform.Android.AppCompat
|
|||
base.OnElementPropertyChanged(sender, e);
|
||||
|
||||
if (e.PropertyName == nameof(TabbedPage.CurrentPage))
|
||||
ScrollToCurrentPage();
|
||||
if(Element.CurrentPage != null)
|
||||
ScrollToCurrentPage();
|
||||
else if (e.PropertyName == NavigationPage.BarBackgroundColorProperty.PropertyName)
|
||||
UpdateBarBackgroundColor();
|
||||
else if (e.PropertyName == NavigationPage.BarTextColorProperty.PropertyName)
|
||||
|
|
Загрузка…
Ссылка в новой задаче