I’m building out an app in Maui using Prism. I have a tabbed page and I want to programmatically change the title of both the tabs and the parent/master tabbed page.
For example, I want the navigation page to say something like “Customer Setup” and then want the first tab to initialize and rename itself to something like “Bizspeed Inc. Setup” once it initializes and looks up the customer. Right now it seems as though if I bind the tabbedpage title to Title, that setting Title in the code sets the title for both the tab and the master page.
enter image description here
I tried binding the master page title to a field called Title that is set programmatically. The challenge is that this is setting both the master page Title and the tab page Title.