how to change the font size of all text box within a grid, windows app uwp
I know how to develop webpages with HTML and CSS, but I am new to the windows app development and I am trying to develop an universal windows platform (UWP) application. Lets say I have grid, <Grid Name="Grid1"> <VisualStateManager.VisualStateGroups> <VisualStateGroup> <VisualState x:Name="Normal"> <VisualState.StateTriggers> <AdaptiveTrigger MinWindowWidth="600" /> </VisualState.StateTriggers> <VisualState.Setters> <Setter Target="text1.FontSize" Value="12" /> <Setter Target="text2.FontSize" Value="12" /> <Setter Target="text3.FontSize" Value="10" /> </VisualState.Setters> </VisualState> <