In my app, I've a panorama-page which contains around 10 panorama items. Each panorama item has some path drawings, a list picker and few input fields.
The problem i'm facing is that whenver i navigate to this page the navigation is very slow due to lot of content to initialize. If i comment the
InitializeComponent(); the loading becomes fast.I thought of adding the XAML content in code, but the problem is that i've to access the input fields by their name in code, so it didn't worked.
Any idea how i can speed up the navigation to the page.
Thanks..