我有一个Windows mobile c#xaml的应用程序。当我构建解决方案时,它在App.xaml.cs页面中给出了我的错误:
错误2类型或命名空间名称' MainPage'找不到(你错过了使用指令或程序集引用吗?)c:\ users \ user \ documents \ visual studio 2013 \ projects \ app5 \ app5 \ app5.shared \ app.xaml.cs 105 48 App5.WindowsPhone
App.xaml.cs中的代码是:
if (!rootFrame.Navigate(typeof(MainPage), e.Arguments))
{
throw new Exception("Failed to create initial page");
}
当MainPage标记为错误时。可能是什么问题?
更新:
App类和MainPage类都在同一名称空间(App5)中。 MainPage类在MainPage.xaml.cs
。
答案 0 :(得分:0)
检查代码隐藏和xaml文件中类名的完整路径。他们必须匹配!
另外,请确保您的app.xaml文件引用了主页的正确网址。