I am working on Windows Phone development. For that I installed required SDK. I do create new project with Windows Phone 8.1, but gradually found that it don't support WCF service as we can not add service reference in assembly. After research I found that Windows Phone 8.1 doesn't support WCF services(refernce). Then I add new Silverlight Windows Phone 8.1 project and found that it support web service(Work Around). While development in Silverlight project I found that their is another difference between two type of project in syntax also, e.g. Navigation to another page,
Windows Phone 8.1 Silverlight support following syntax:
NavigationService.Navigate(new Uri(@"/SecondPage.xaml", UriKind.Relative));
where as Windows Phone 8.1 support(reference)
Frame.Navigate(typeof(SecondPage));
Now I am getting confuse with those type of project and unable to find those differences. Please help me out.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…