Hi
In my code i used 'OnNavigatedTo' more than once and it throws the following error
"'OpenHeavens.MainPage' already defines a member called 'OnNavigatedTo' with the same parameter types"
Is there a way i can resolve this issues because i need to use 'OnNavigatedTo' more than once in my code
Thank you
VulpesPosted Jan 30, 2015, 4:13 PM
You can only do this if the number and/or types of the parameters for each 'overload' of the method are different which I suspect won't be the case here - there will just be a single NavigationEventArgs parameter for them all.
So, you need to remove the superfluous definition(s) so you only have one left and (if necessary) find a way to combine the code you had in each method previously.