All Questions
Tagged with tabbedpage uwp
4 questions
0
votes
1
answer
899
views
OnAppearing method of the first child page of a TabbedPage called twice
I have a TabbedPage with two child pages PageA and PageB (in the same order).
On starting the tabbed page, PageA's OnAppearing method is called twice. How do I prevent this from happeinng?
Here's the ...
0
votes
1
answer
539
views
Xamarin Forms UWP Phone Device TabbedPage - How to underline selected tab and stretch tabs to fill screen?
I have a cross-platform Xamarin Forms application with a PCL, Android, iOS, and UWP projects. In the UWP project, I am trying to style a tabbed page to where the selected tab is underlined as in the ...
4
votes
2
answers
2k
views
Tab icons in a Xamarin.Forms UWP TabbedPage?
When putting together a TabbedPage in Xamarin.Forms, how do I get UWP to use the page's Icon property?
It looks like UWP could support this just fine, if I configure my Forms attributes/files ...
0
votes
1
answer
660
views
UWP: Xamarin Forms Tabbed Page changing page doesn't call OnAppearing
In a Xamarin Forms project, I have created a TabbedPage inside which I have added 5 child navigation pages.
{
Children.Add(new NavigationPage(new A()));
Children.Add(new NavigationPage(new B()...