I'm trying to set a specific style of watermark but the control seems to ignore some settings.
For example if I set the FontStyle to Italic in the example below - it does not render as Italic. However, changing the foreground color to crimson does work.
Thoughts?
For example if I set the FontStyle to Italic in the example below - it does not render as Italic. However, changing the foreground color to crimson does work.
<t:RadWatermarkTextBox x:Name="FirstNameTextBox" Grid.Row="0" Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Stretch" Text="{Binding FirstName}" ToolTip="First Name" > <t:RadWatermarkTextBox.WatermarkContent> <TextBlock FontStyle="Italic" Foreground="Crimson">First Name</TextBlock> </t:RadWatermarkTextBox.WatermarkContent></t:RadWatermarkTextBox>Thoughts?