I'm building a metro style app. I designed a "settings" flyout where users can change the font of the textblocks contained in the HomePageView page of the app.
The font is chosen through a combobox that lists all system fonts. Once the font is choosen (in the combobox of the settings flyout) all the textblocks in the HomePageView page must be updated.
This is the style to update (located in standardstyles.xaml):
<Style x:Key="timeStyle" TargetType="TextBlock">
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="FontSize" Value="333.333"/>
<Setter Property="FontFamily" Value="Segoe UI"/>
</Style>
This is the code I use to update the textblock style and where I access the SetTextBlockFont property to update the textblocks appearance:
private void fontBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
var res = new ResourceDictionary()
{
Source = new Uri("ms-appx:///Common/StandardStyles.xaml", UriKind.Absolute)
};
var style = res["timeStyle"] as Style;
style.Setters.RemoveAt(2);
style.Setters.Add(new Setter(FontFamilyProperty, new FontFamily("Arial")));
HomePageView homePageViewReference = new HomePageView();
homePageViewReference.SetTextBlockFont = style;
}
This is the SetTextBlockFont property in HomePageView.xaml.cs that updates a textblock (timeHour):
public Style SetTextBlockFont
{
set
{
timeHour.Style = value;
}
}
The app compiles without errors but when I click to a font in the combobox nothing happens. I think because I have to load the new instance of the HomePageView page homePageViewReference or because I have to reload the page or something similar.
I point out I can't use the Frame object or the NavigationService class because this is a metro app.
