I added a menu in my .NET maui app with the following xaml:
<ContentPage.MenuBarItems> <MenuBarItem Text="Passwords" /> <MenuBarItem Text="Groups" /> <MenuBarItem Text="Tools" /> <MenuBarItem Text="Exit" /> </ContentPage.MenuBarItems>
When I built the solution ad ran it with Windows Machine selected, the menu showed up properly except the word HOME was after it. So the menu displayed was:
Passwords Groups Tools Exit HOME
So How do I remove the word HOME from the menu display?