[UWP] fixes crash after reset text color (#6435)

This commit is contained in:
Pavel Yakovlev 2019-07-04 02:24:57 +03:00 коммит произвёл Samantha Houts
Родитель e2d4d38dc9
Коммит ebad51173b
1 изменённых файлов: 2 добавлений и 9 удалений

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

@ -64,15 +64,8 @@ namespace Xamarin.Forms.Platform.UWP
Color backgroundColor = Element.BackgroundColor;
if (Control != null)
{
if (!backgroundColor.IsDefault)
{
Control.Background = backgroundColor.ToBrush();
}
else
{
Control.ClearValue(BackgroundProperty);
}
}
Control.Background = backgroundColor.IsDefault ? null : backgroundColor.ToBrush();
}
}
void PackChild()