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 a
CalendarDatePicker
FontSize
You can use the Visual Tree Extensions from the UWP Community Toolkit to grab the textbox control by name or type and modify its FontSize property:
-
Calender.FindDescendantByName("DateText").FontSize = 30;