c# - Navigate with object -
According to this, navigation all. Navigate
methods should be an overload to increase the object, in Visual Studio 2013, and more. 4.5.1 If installed, the IDE can not be overloaded and it forces me to use a URI. Is there anything wrong in my visual studio or it has been discontinued, etc.
this.NavigationService.Navigate (new ShowRoom ("", "")); // The best overload for navigation ... is some invalid argument
Notice how the version selector you indicated on the MSDN article is set to .NET Framework 4.5
. This overload does not apply to Windows Phone 8 (for which version will be Silverlight
).
Here is the definition of the navigation service for Windows Phone 8:
You will see that there is only one navigat
definition, a URI
. You will use it like this:
this.NavigationService.Navigate ("/ ShowRoom.xaml? Parameter1 = value1");
Comments
Post a Comment