locked
Page Navigation issue. RRS feed

  • Question

  • I am currently unable to post my code, will post if needed.

    My app has two pages and on my main page I have a HyperlinkButton that takes me to my other page by using:

    this.Frame.Navigate(typeof(BlankPage1));

    This is navigating to my other page successfully but when it is clicked it gives me a notification that pops up and says, "Search for app in the Store? You need to install an app for this task. Would you like to search for one in the Store?" while the second page is loaded behind the notification.

    What is the issue?

    Thanks.

    Monday, January 12, 2015 6:55 AM

Answers

  • What's going on in BlankPage1 that might cause this?

    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.

    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined objects and unknown namespaces.

    • Marked as answer by DigitalMath Monday, January 12, 2015 5:20 PM
    Monday, January 12, 2015 12:55 PM
    Moderator

All replies

  • What's going on in BlankPage1 that might cause this?

    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.

    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined objects and unknown namespaces.

    • Marked as answer by DigitalMath Monday, January 12, 2015 5:20 PM
    Monday, January 12, 2015 12:55 PM
    Moderator
  • I seem to have fixed the problem. For the HyperlinkButton I originally had a NavigateUri property in the xaml file but I got rid of it and just had a Click method that did:

    this.Frame.Navigate(typeof(BlankPage1));

    Monday, January 12, 2015 5:19 PM