I need to use Pivot but without loading all pages in all PivotItems. Need to Load/Relaod each page in PivotItem only when I pick this specific PivotItem.
I have tried, one bye one, all functionality which the Xaml provides, to make action only when the PivotItem is pressed but non suceeded.
<Pivot x:Name="XmlConfigPivot">
<PivotItem Header="Layout">
<Frame>
<xml_config:Layout_Tab/>
</Frame>
</PivotItem>
<PivotItem Header="stub_tab">
<Frame>
<xml_config:Stub_Tab/>
</Frame>
</PivotItem>
</Pivot>
How to make "xml_config:Layout_Tab" load only when I pick it's PivotItem?