Closed
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
Metadata
Assignees
Labels
Type
Projects
Status
Done