зеркало из https://github.com/DeGsoft/maui-linux.git
[UWP] fixes crash after reset text color (#6435)
This commit is contained in:
Родитель
e2d4d38dc9
Коммит
ebad51173b
|
@ -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()
|
||||
|
|
Загрузка…
Ссылка в новой задаче