-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Closed
Copy link
Labels
area-controls-titlebarcsi-newpartner/syncfusionIssues / PR's with Syncfusion collaborationIssues / PR's with Syncfusion collaborationplatform/windowss/triagedIssue has been reviewedIssue has been revieweds/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't working
Milestone
Description
Description
Affected Build: 17.13.0 Preview 3.0 [35708.219.main]
Affected project:
https://microsoft-my.sharepoint.com/:u:/p/v-tianlz/EYHhIT_CE7JPvlYdzCBHjygBrWviXvWZ305RgE_s6eK84Q?e=3rEAtu
Steps to Reproduce
- Create .net MAUI project or Run the Sample Project
- Add the following code in MainPage.xaml:
<Button
x:Name="CounterBtn2"
Text="Click me2"
SemanticProperties.Hint="Counts the number of times you click"
Clicked="OnCounterClicked2"
HorizontalOptions="Fill" />
- Change the two Button events in MainPage.xaml.cs:
private void OnCounterClicked(object sender, EventArgs e)
{
this.Window.TitleBar = null;
this.Window.Title = "Title";
}
private void OnCounterClicked2(object sender, EventArgs e)
{
this.Window.TitleBar = new TitleBar()
{
Title = "[TitleBar.TitleBar]",
Subtitle = "[Title.Subtitle]",
BackgroundColor = Color.FromRgb(255, 255, 0)
};
}
- Debugging on a Windows machine
- Click "Click Me"->Windows title displays "Title";
- Click "Click Me2"->Windows title displays "[TitleBar.TitleBar]";
- Click "Click Me" again to observe the Windows title display;
Actually:
Windows has no “Title” display.

Expected:
The Windows "Title" displays normally.

Link to public reproduction project repository
Version with bug
Microsoft.Maui.Controls 9.0.30-ci.main.25058.3
Is this a regression from previous behavior?
Don't know. Previous versions were blocked by this issue(9.0.22 & 9.0.0).#26396
Affected platforms
Windows
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area-controls-titlebarcsi-newpartner/syncfusionIssues / PR's with Syncfusion collaborationIssues / PR's with Syncfusion collaborationplatform/windowss/triagedIssue has been reviewedIssue has been revieweds/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't working
Type
Projects
Status
Done