summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.UAP
diff options
context:
space:
mode:
authorPaul DiPietro <pauldipietro@users.noreply.github.com>2017-03-03 06:31:46 -0600
committerRui Marinho <me@ruimarinho.net>2017-03-03 12:31:46 +0000
commit8871077f115e7ef4d15efaa418fd718089db42c7 (patch)
tree91faf77329b6c1be984f36665ea80d6ae6a57589 /Xamarin.Forms.Platform.UAP
parent38c0b34e91e2148e78704432afec6b086c9fc0c9 (diff)
downloadxamarin-forms-8871077f115e7ef4d15efaa418fd718089db42c7.tar.gz
xamarin-forms-8871077f115e7ef4d15efaa418fd718089db42c7.tar.bz2
xamarin-forms-8871077f115e7ef4d15efaa418fd718089db42c7.zip
[WinRT/UWP] Make TextBox better respect background color changes via behaviors (#749)
Diffstat (limited to 'Xamarin.Forms.Platform.UAP')
-rw-r--r--Xamarin.Forms.Platform.UAP/FormsTextBoxStyle.xaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.UAP/FormsTextBoxStyle.xaml b/Xamarin.Forms.Platform.UAP/FormsTextBoxStyle.xaml
index 4d9ea090..ad9f0b97 100644
--- a/Xamarin.Forms.Platform.UAP/FormsTextBoxStyle.xaml
+++ b/Xamarin.Forms.Platform.UAP/FormsTextBoxStyle.xaml
@@ -166,7 +166,7 @@
<Border x:Name="BackgroundElement" Background="{TemplateBinding Background}" Grid.ColumnSpan="2"
Margin="{TemplateBinding BorderThickness}" Opacity="{ThemeResource TextControlBackgroundRestOpacity}"
Grid.Row="1" Grid.RowSpan="1" />
- <Border x:Name="BorderElement" BorderBrush="{TemplateBinding BorderBrush}"
+ <Border x:Name="BorderElement" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}" Grid.ColumnSpan="2" Grid.Row="1" Grid.RowSpan="1" />
<ContentPresenter x:Name="HeaderContentPresenter" Grid.ColumnSpan="2"
ContentTemplate="{TemplateBinding HeaderTemplate}" Content="{TemplateBinding Header}"