[UWP] Fix issue where if ItemsSouce is initially null, listview would never render (#2976)

This commit is contained in:
Philippe Leybaert 2018-06-08 02:04:40 -05:00 коммит произвёл Rui Marinho
Родитель 7c80d54cad
Коммит fbbbb1cca1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -171,7 +171,7 @@ namespace Xamarin.Forms.Platform.UWP
else if (e.PropertyName == ListView.ItemsSourceProperty.PropertyName)
{
ClearSizeEstimate();
((CollectionViewSource)List.DataContext).Source = Element.ItemsSource;
ReloadData();
}
else if (e.PropertyName == Specifics.SelectionModeProperty.PropertyName)
{