如果Windows 10使用暗主题(UWP),请设置“TextBlock Text”

本文关键字:设置 Text TextBlock UWP Windows 如果 | 更新日期: 2023-09-27 18:08:03

如果windows 10用户使用深色/浅色主题,我想设置TextBlock的文本。我试过了

RequestedTheme == ElementTheme.Dark

但是它不工作。

编辑:我想这样设置

if(user uses dark them)
{
    mTextBlock.Text = "Dark"
}
elseif(user uses light theme)
{
   mTextBlock.Text = "Light"
}

如果Windows 10使用暗主题(UWP),请设置“TextBlock Text”

ApplicationThemeEnum,用于检查应用程序的主题。你可以在下面检查。

if (Application.Current.RequestedTheme == ApplicationTheme.Dark)
{
    mTextBlock.Text = "Dark"
}
elseif(Application.Current.RequestedTheme == ApplicationTheme.Light)
{
   mTextBlock.Text = "Light"
}

更多信息在这里

您可以尝试:

Application.Current.Resources["SystemAccentColor"]

您可以使用{themerresource}标记扩展来实现您想要做的事情。在你的Page.xaml:

<Page.Resources>
    <ResourceDictionary>
        <ResourceDictionary.ThemeDictionaries>                
            <ResourceDictionary Source="Dictionary2.xaml" x:Key="Dark"/>
            <ResourceDictionary Source="Dictionary1.xaml" x:Key="Light"/>
        </ResourceDictionary.ThemeDictionaries>
    </ResourceDictionary>
</Page.Resources>
<StackPanel>
    <TextBlock Text="{ThemeResource txt}"/>
</StackPanel>

Dictionary1.xaml:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Styles">
<x:String x:Key="txt">Light</x:String>
</ResourceDictionary>

Dictionary2.xaml:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Styles">
<x:String x:Key="txt">Dark</x:String>
</ResourceDictionary>