Michael Luce
Posts: 0
Joined: Mon May 11, 2015 5:58 pm

Windows Phone Button Problems & Back Stack

Hi,

I have built an app and submitted it to both the Google Play store and the Apple app store with no problems. With the windows phone version, I am exporting it as a visual studio solution so that I can open it up in the emulator to get some screenshots.

The problem is, the first page loads but none of the buttons on the page work. It won't navigate to another page. Does anyone have any ideas why it works fine on the other two platforms?

Also, another question is how to clear the back stack on windows phone? I have some pages that automatically divert the user to another page but need to be able to remove them from the back stack.

Any pointers would be appreciated!

Michael Luce
Posts: 0
Joined: Mon May 11, 2015 5:58 pm

Windows Phone Button Problems & Back Stack

As a note, it works when deployed to a test device, just not in the emulators.

I also need to call the following code in c#, but dont know how to do it in Appery;

NavigationService.RemoveBackEntry();

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

Windows Phone Button Problems & Back Stack

Hi Michael -

Thanks for this update, we'll tell this to our developers team.

Michael Luce
Posts: 0
Joined: Mon May 11, 2015 5:58 pm

Windows Phone Button Problems & Back Stack

NOTE: I have managed to clear items from the back stack by using javascript instead of Appery's in built NavigateTo method. Using the following code. It will essentially remove the page being navigated from in the back stack.

window.location.replace("logon.html");

Instead of;

Apperyio.navigateTo('Logon', {});

Return to “Issues”