[UWP] Fix Transparent Default Button (#468)

This commit is contained in:
Jimmy Garrido 2016-11-08 07:38:17 -08:00 коммит произвёл Stephane Delcroix
Родитель 62c3993be3
Коммит 8aa29ec344
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -74,7 +74,9 @@ namespace Xamarin.Forms.Platform.WinRT
void UpdateBackgroundColor()
{
Background = Color.Transparent.ToBrush();
if (BackgroundColor == null)
BackgroundColor = Background;
#if WINDOWS_UWP
if (_contentPresenter != null)
_contentPresenter.Background = BackgroundColor;
@ -82,6 +84,7 @@ namespace Xamarin.Forms.Platform.WinRT
if (_border != null)
_border.Background = BackgroundColor;
#endif
Background = Color.Transparent.ToBrush();
}
void UpdateBorderRadius()