summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT')
-rw-r--r--Xamarin.Forms.Platform.WinRT/FormsButton.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/FormsButton.cs b/Xamarin.Forms.Platform.WinRT/FormsButton.cs
index ffe75d4f..b765948c 100644
--- a/Xamarin.Forms.Platform.WinRT/FormsButton.cs
+++ b/Xamarin.Forms.Platform.WinRT/FormsButton.cs
@@ -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()