Hello,
I understand that the Secondary menu items cannot be made icons. Please ignore my assignment of icons in the Secondary menu items. I mainly have them there to serve as reminders if I decide to go to creating a mock menu using an AbsoluteLayout page that mimics an actual menu.
However, can I modify the Kebab icon? I have color themes in my app, and would like to make the Kebab match my color themes. Or do I have to go ahead and make a mock menu as I described above?
Here's my code (not sure why, it's pretty self explanatory LOL)
<ContentPage.ToolbarItems>
<ToolbarItem
Clicked="AddItem_Clicked"
IconImageSource="{Binding Path=AddIcon}"
Text="Add" />
<ToolbarItem
Clicked="ExportLoadsAsXML"
IconImageSource="{StaticResource Key=icoFileXML}"
Order="Secondary"
Text="Export XML" />
<ToolbarItem
Clicked="ExportExcelRecords_Clicked"
IconImageSource="{StaticResource Key=icoFileXLS}"
Order="Secondary"
Text="Export Excel" />
<ToolbarItem
Clicked="ImportDataItem_Clicked"
IconImageSource="{StaticResource Key=icoImport}"
Order="Secondary"
Text="Import Data" />
<ToolbarItem
Clicked="DeleteRecords_Clicked"
IconImageSource="{StaticResource Key=icoDelete}"
Order="Secondary"
Text="Delete Records" />
</ContentPage.ToolbarItems>
Cheers!
