I have a CalendarDatePicker
control on my UWP app. I am not able to increase the size of the font of the date that is selected using the FontSize
attribute.
How can I easily do this without overriding a lot of styles?
Here is the basic code I have:
<Page
x:Class="CalendarPickerExample.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:CalendarPickerExample"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<CalendarDatePicker FontSize="30" />
</Grid>
</Page>
No matter what size I set the FontSize
attribute on the CalendarDatePicker
, the size of the font of the selected date does not increase.
Please help!