-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
area-controls-tabbedpageTabbedPageTabbedPagefixed-in-8.0.40fixed-in-9.0.0-preview.5.24307.10migration-compatibilityXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-ConvertXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-Convertplatform/androidplatform/iosplatform/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
With TabbedPages, the parent TabbedPage and children pages can all be seperately titled. The title of the parent must display on the toolbar, and the children's titles must display on the tabs.
Currently, the seleced tab's tile also gets displayed on the toolbar.
Here is the code for the tabbed page. Notice its Title is 'TabbedPage'
internal class NextTabbedPage: TabbedPage
{
public NextTabbedPage()
{
Children.Add(new NextTabPage1());
Children.Add(new NextTabPage2());
Title = "TabbedPage";
MenuBarItems.Add(new MenuBarItem { Text = "MenuItem1" });
MenuBarItems.Add(new MenuBarItem { Text = "MenuItem2" });
}
}
A repro project is provided: https://github.com/hbraasch/WinMenuTester.git
Steps to Reproduce
- Load repro project in VS and run. Notice the error on the toolbar
Version with bug
6.0.400 (current)
Last version that worked well
Unknown/Other
Affected platforms
iOS, Android, Windows
Affected platform versions
All
Did you find any workaround?
No response
Relevant log output
No response
r-work, Amenti, duindain, Adam-- and simon10says
Metadata
Metadata
Assignees
Labels
area-controls-tabbedpageTabbedPageTabbedPagefixed-in-8.0.40fixed-in-9.0.0-preview.5.24307.10migration-compatibilityXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-ConvertXamarin.Forms to .NET MAUI Migration, Upgrade Assistant, Try-Convertplatform/androidplatform/iosplatform/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