[UWP] Fix issue where if ItemsSouce is initially null, listview would never render (#2976)
This commit is contained in:
Родитель
7c80d54cad
Коммит
fbbbb1cca1
|
@ -171,7 +171,7 @@ namespace Xamarin.Forms.Platform.UWP
|
||||||
else if (e.PropertyName == ListView.ItemsSourceProperty.PropertyName)
|
else if (e.PropertyName == ListView.ItemsSourceProperty.PropertyName)
|
||||||
{
|
{
|
||||||
ClearSizeEstimate();
|
ClearSizeEstimate();
|
||||||
((CollectionViewSource)List.DataContext).Source = Element.ItemsSource;
|
ReloadData();
|
||||||
}
|
}
|
||||||
else if (e.PropertyName == Specifics.SelectionModeProperty.PropertyName)
|
else if (e.PropertyName == Specifics.SelectionModeProperty.PropertyName)
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче