Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot set color of Title and Subtitle text in TitleBar #9866

Open
brunosonnino opened this issue Jul 31, 2024 · 1 comment
Open

Cannot set color of Title and Subtitle text in TitleBar #9866

brunosonnino opened this issue Jul 31, 2024 · 1 comment
Labels
area-AppWindow bug Something isn't working team-CompInput Issue for IXP (Composition, Input) team

Comments

@brunosonnino
Copy link

Describe the bug

You cannot set the colors of the title and subtitle of a titlebar using AppWindow.TitleBar.ForegroundColor

Steps to reproduce the bug

  • Create a Blank WinUI3 app
  • Upgrade the WindowsAppSdk Nuget package to 1.6 experimental 2
  • Change the project file to add
<WindowsSdkPackageVersion>10.0.19041.35-preview</WindowsSdkPackageVersion>

Add this code in MainWindow.xaml.cs

public MainWindow()
{
    this.InitializeComponent();
    ExtendsContentIntoTitleBar = true;
    AppWindow.TitleBar.ForegroundColor = Colors.Yellow;
}

Add this code to MainWindow.xaml:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto" />
        <RowDefinition Height="*" />
    </Grid.RowDefinitions>
    <TitleBar Title="Title" Subtitle="SubTitle" IsBackButtonVisible="True"
            IsPaneToggleButtonVisible="True" >
        <TitleBar.IconSource>
            <FontIconSource Glyph="&#xe713;" />
        </TitleBar.IconSource>
    </TitleBar>
    <Grid Grid.Row="1" Background="Aqua">
    </Grid>
</Grid>

Run the project. Although the TitleBar foreground is set, the color remains the same.

The workaround for this is to set the ThemeResources associated with the Foreground in the xaml file:

  <Grid.Resources>
    <SolidColorBrush x:Key="TitleBarForegroundBrush" Color="Yellow" />
    <SolidColorBrush x:Key="TitleBarSubtitleForegroundBrush" Color="Yellow" />
  </Grid.Resources>

This project shows a sample of the bug: https://github.com/brunosonnino/TitleBarBugs/tree/main/3%20-%20TitleBarBackground

Expected behavior

The colors of the title and subtitle of the titlebar should honor the ForegroundColor setting

Screenshots

image

NuGet package version

WinUI 3 - Windows App SDK 1.6 Experimental 2: 1.6.240701003-experimental2

Windows version

Windows 11 (22H2): Build 22621

Additional context

No response

@brunosonnino brunosonnino added the bug Something isn't working label Jul 31, 2024
@microsoft-github-policy-service microsoft-github-policy-service bot added the needs-triage Issue needs to be triaged by the area owners label Jul 31, 2024
Copy link

Hi I'm an AI powered bot that finds similar issues based off the issue title.

Please view the issues below to see if they solve your problem, and if the issue describes your problem please consider closing this one. Thank you!

Open similar issues:

Note: You can give me feedback by thumbs upping or thumbs downing this comment.

@JesseCol JesseCol added area-AppWindow team-CompInput Issue for IXP (Composition, Input) team and removed needs-triage Issue needs to be triaged by the area owners labels Aug 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-AppWindow bug Something isn't working team-CompInput Issue for IXP (Composition, Input) team
Projects
None yet
Development

No branches or pull requests

2 participants