I have a CalendarDatePicker control in my UWP application. I cannot increase the font size of the date selected using the FontSize attribute.
How can I do this without overriding many 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 to CalendarDatePicker , the font size of the selected date does not increase.

Please, help!
source share