更新通用 Windows 应用 XAML 中的资源



我需要在通用Windows应用程序中运行时更改应用程序的文本块的颜色。

通用Windows应用程序不支持动态资源,我一直在探索几种不同的方法来更改TextBlock的颜色,但没有成功

<TextBlock Text="Test" Style="{StaticResource MyText}"/>

使用样式

<Style x:Key="MyText" TargetType="TextBlock">
    <Setter Property="Foreground" Value="{StaticResource TextColor}" />
</Style>

我的问题是:如何在运行时更改文本块的颜色?

以下是更改颜色的所有尝试:


最初,我遵循了这篇文章+视频动态皮肤您的Windows 8应用程序,我将TextColor存储在一个单独的字典文件中,我可以交换MergedDictionaries

  • Day.xaml包含<SolidColorBrush x:Key="TextColor" Color="#FFDDEEFF" />
  • Night.xaml包含<SolidColorBrush x:Key="TextColor" Color="#FFFFDD99" />

在代码中:

    ResourceDictionary _nightTheme = new ResourceDictionary() { Source = new Uri("ms-appx:///Themes/Night.xaml") };
    ResourceDictionary _baseTheme = new ResourceDictionary() { Source = new Uri("ms-appx:///Themes/MyApp.xaml") };
// OnLaunched - I set a default theme to prevent exceptions
    Application.Current.Resources.MergedDictionaries.Add(_dayTheme);
// Method that changes theme:
        if (NightFall)
        {
            Application.Current.Resources.MergedDictionaries.Remove(_dayTheme);
            Application.Current.Resources.MergedDictionaries.Add(_nightTheme);
        }
        else
        {
            Application.Current.Resources.MergedDictionaries.Remove(_nightTheme);
            Application.Current.Resources.MergedDictionaries.Add(_dayTheme);
        }

当这不起作用时,我认为我需要清除字典:

    ResourceDictionary _baseTheme = new ResourceDictionary() { Source = new Uri("ms-appx:///Themes/MyApp.xaml") };
// Method that changes theme:
        Application.Current.Resources.MergedDictionaries.Clear();
        Application.Current.Resources.MergedDictionaries.Add(_baseTheme);
        if (NightFall)
        {
            Application.Current.Resources.MergedDictionaries.Add(_nightTheme);
        }
        else
        {
            Application.Current.Resources.MergedDictionaries.Add(_dayTheme);
        }

我还尝试在更改字典的方法中刷新框架,但无济于事

        var frame = Window.Current.Content as Frame;
        frame.Navigate(frame.Content.GetType());

另一次尝试中,我尝试在运行时创建一个字典并更新它

ResourceDictionary _dynamicTheme = new ResourceDictionary();
// OnLaunched
        _dynamicTheme.Add("TextColor", new SolidColorBrush(Windows.UI.Colors.Chocolate));
        Application.Current.Resources.MergedDictionaries.Add(_dynamicTheme);
// Method that changes theme
        _dynamicTheme.Remove("TextColor");
        _dynamicTheme.Add("TextColor", new SolidColorBrush(NightFall ? Windows.UI.Colors.Chocolate : Windows.UI.Colors.Cornsilk));

最后,我意识到也许StaticResource使颜色不可变,所以我决定尝试一下ThemeResource。我修改了我的主题:

<Style x:Key="MyText" TargetType="TextBlock">
    <Setter Property="Foreground" Value="{ThemeResource MyTextColor}" />
</Style>

Day.xaml

<ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Default">
        <SolidColorBrush x:Key="MyTextColor" Color="#FFDDEEFF" />
    </ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>

Night.xaml

<ResourceDictionary.ThemeDictionaries>
    <ResourceDictionary x:Key="Default">
        <SolidColorBrush x:Key="MyTextColor" Color="#FFFFDD99" />
    </ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>

我像以前的尝试一样在Application.Current.Resources.MergedDictionaries中交换了方法。同样,颜色不会改变,即使我假刷新Frame

几个月

前我遇到了同样的问题,直到我遇到以下博客文章,我才解决了这个问题,该博客文章提出了一个非常好的通用解决方案。

基本上你需要做的是:

第一

Frame类中添加以下帮助程序,这将替换默认Frame

public class ThemeAwareFrame : Frame
{
    private static readonly ThemeProxyClass _themeProxyClass = new ThemeProxyClass();
    public static readonly DependencyProperty AppThemeProperty = DependencyProperty.Register(
        "AppTheme", typeof(ElementTheme), typeof(ThemeAwareFrame), new PropertyMetadata(default(ElementTheme), (d, e) => _themeProxyClass.Theme = (ElementTheme)e.NewValue));

    public ElementTheme AppTheme
    {
        get { return (ElementTheme)GetValue(AppThemeProperty); }
        set { SetValue(AppThemeProperty, value); }
    }
    public ThemeAwareFrame(ElementTheme appTheme)
    {
        var themeBinding = new Binding { Source = _themeProxyClass, Path = new PropertyPath("Theme"), Mode = BindingMode.OneWay };
        SetBinding(RequestedThemeProperty, themeBinding);
        AppTheme = appTheme;
    }
    sealed class ThemeProxyClass : INotifyPropertyChanged
    {
        private ElementTheme _theme;
        public ElementTheme Theme
        {
            get { return _theme; }
            set
            {
                _theme = value;
                OnPropertyChanged();
            }
        }
        public event PropertyChangedEventHandler PropertyChanged;
        private void OnPropertyChanged([CallerMemberName] string propertyName = null)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

博客文章作者解释的ThemeAwareFrame类背后的想法是:

我创建了一个仅用于存储当前主题的代理类,并且, 如果主题已更改,则传播它。它是一个静态字段,也是如此 与所有ThemeAwareFrame共享。

我添加了一个应用主题依赖项属性。当它将被更改时,它 将在代理类中更改。

在 ThemeAwareFrame 构造函数中,我绑定了 ThemeRequested 属性 到代理类主题属性。

第二

App.xaml 中创建色和深色主题资源:

 <Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary>
                <ResourceDictionary.ThemeDictionaries>
                    <ResourceDictionary x:Key="Dark">
                        <SolidColorBrush x:Key="MyTextColor" Color="DarkGray" />
                    </ResourceDictionary>
                    <ResourceDictionary x:Key="Light">
                        <SolidColorBrush x:Key="MyTextColor" Color="White" />
                    </ResourceDictionary>
                </ResourceDictionary.ThemeDictionaries>
            </ResourceDictionary>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

第三

在 App.Xaml 中.cs将 rootFrame 更改为 ThemeAwareFrame,而不是简单的 Frame:

rootFrame = new ThemeAwareFrame(ElementTheme.Dark);

OnLaunched方法中:

     protected override void OnLaunched(LaunchActivatedEventArgs e)
     {
    #if DEBUG
        if (System.Diagnostics.Debugger.IsAttached)
        {
            this.DebugSettings.EnableFrameRateCounter = true;
        }
    #endif
        Frame rootFrame = Window.Current.Content as Frame;
        // Do not repeat app initialization when the Window already has content,
        // just ensure that the window is active
        if (rootFrame == null)
        {
            // Create a Frame to act as the navigation context and navigate to the first page
            rootFrame = new ThemeAwareFrame(ElementTheme.Dark);
            // TODO: change this value to a cache size that is appropriate for your application
            rootFrame.CacheSize = 1;
            if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
            {
                // TODO: Load state from previously suspended application
            }
     //..

福斯

使用主题相关资源时,请使用ThemeResource而不是staticResource

<Page.Resources>
    <Style x:Key="MyText" TargetType="TextBlock">
        <Setter Property="Foreground" Value="{ThemeResource MyTextColor}" />
    </Style>
</Page.Resources>
<Grid >
    <Grid.RowDefinitions>
        <RowDefinition Height="*"/>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>
    <TextBlock Text="Test" Style="{StaticResource MyText}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
    <Button Content="Dark Theme" Click="ChangeThemeToDarkClick" Grid.Row="1"></Button>
    <Button Content="Light Theme" Click="ChangeThemeToLightClick" Grid.Row="2"></Button>
</Grid>

最后

要更改应用主题,只需更改 rootFrame 的 AppTheme 属性,如下所示:

   private void ChangeThemeToLightClick(object sender, RoutedEventArgs e)
    {
        (Window.Current.Content as ThemeAwareFrame).AppTheme = ElementTheme.Light;
    }
    private void ChangeThemeToDarkClick(object sender, RoutedEventArgs e)
    {
        (Window.Current.Content as ThemeAwareFrame).AppTheme = ElementTheme.Dark;
    }

最新更新