Can you tell me how can I add toolbar item in a tabbed page in xamarin from. thanks
Asked
Active
Viewed 5,796 times
1 Answers
6
<TabbedPage.ToolbarItems>
<ToolbarItem Name="MenuItem1" Order="Primary" Icon="Microsoft.png" Text="Item 1" Priority="0" />
<ToolbarItem Name="MenuItem2" Order="Primary" Icon="Xamarin.png" Text="Item 2" Priority="1" />
</TabbedPage.ToolbarItems>

fmaccaroni
- 3,846
- 1
- 20
- 35

ColeX
- 14,062
- 5
- 43
- 240
-
6This is not the correct answer. it is asked for Tabbed page. you should use
instead. – Emil Dec 02 '17 at 00:53