Shell.Title and Window.Title currently doesn't propagate to the catalyst window title
See original GitHub issueDescription
The title on the window and shell component don’t currently propagate to the UIScene title property.
Here’s an example of a workaround https://github.com/PureWeen/dotnetConfDemo2022/blob/main/dotnetConfDemo/Windows/ScopedWindow.cs#L35
Issue Analytics
- State:
- Created 10 months ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
How to change the window title in a Mac Catalyst ...
I'm opening multiple scenes in the Mac Catalyst version of my iPad app. The problem is that all of the windows simply show...
Read more >How to change the window title in a Mac Catalyst ...
I'm opening multiple scenes in the Mac Catalyst version of my iPad app. The problem is that all of the windows simply show...
Read more >Why doesn't the terminal window title change when logging ...
After a terminal window is created, its title only changes when some program within the window outputs a certain series of characters.
Read more >tcsh: title update - Shell
Hello all, I'm trying to setup window title update when I run programs which doesn't update title by themselves.
Read more >Screen - Window Settings
Set the name of the current window to windowalias . If no name is specified, screen prompts for one. Dynamic Titles. screen has...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

They usually do based on context and for accessibility reasons. Ideally your window title will append/include the context of where you are in an app, that way if you have multiple windows, or you have multiple instances of an app, the screen reader + window.title will give your window context.
For example, every window of your browser bases the title on the currently visible page.
Notepad will prefix the filename.
The Window.Title should probably be an attached property like how we do
NavigationPage.TitleYou only have one
Shellfor your window so theShelland the window are synonymous. TheTitlefor the Page itself will be set on theShellContentor thePageitself.