I want to change the color of the Textbox header in UWP. My Textbox:
<TextBox x:Name="tbFullName" Header="Full Name" Margin="30,24,0,0" MaxLength="320" Width="400" HorizontalAlignment="Left" InputScope="PersonalFullName" VerticalAlignment="Stretch"/>
My current (not working) code to change the color:
tbFullName.Header = new SolidColorBrush(Windows.UI.Colors.White);
I hope someone is able to help. Note: I'm am very new to UWP and I'm quite new to programming, I would really appreciate if the answers given to me aren't all too hard to understand. Thanks in advance!