Hello @SimonGhost ,
Welcome to Microsoft Q&A,
ToolBar Item Not Showing in Secondary (3 Dots) Xamarin.Forms UWP
I have created a code sample if set Order
as Secondary
, it will show 3 dots in my side. we could not reproduce your issue, I suppose you have not insert current page into NavigationPage
. Please do it like the following.
var nav = new NavigationPage(new MainPage());
But How To Change Navigation Bar Color this
If you want to edit Navigation Bar color, you could edit BarBackgroundColor
property like this.
var nav = new NavigationPage(new MainPage()) { BarBackgroundColor = Color.Red};
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.