侧面菜单xaml导航错误windows phone 8

时间:2014-01-23 10:57:28

标签: c# xaml windows-phone-8

我目前正在尝试开发具有侧面菜单的Windows Phone 8应用程序。我设法加载了2个不同的xaml页面(menuitems.xaml& mainpage.xaml)。所以这里的问题是,每当我尝试点击菜单时,它会给我一个错误如下: -

  

System.Windows.ni.dll!MS.Internal.Error.CallApplicationUEHandler(System.Exception e)未知   System.Windows.ni.dll!MS.Internal.Error.IsNonRecoverableUserException(System.Exception ex,out uint xresultValue)Unknown   System.Windows.ni.dll!MS.Internal.JoltHelper.FireEvent(System.IntPtr unmanagedObj,System.IntPtr unmanagedObjArgs,int argsTypeIndex,int actualArgsTypeIndex,string eventName)Unknown

我在这里上传了我的源代码。我希望我能就如何完成它获得一些建议。谢谢!

https://skydrive.live.com/redir?resid=24BED6E1EB5E271A!110&authkey=!AFcidu4XGUa44-0&ithint=file%2c.zip

1 个答案:

答案 0 :(得分:2)

我的猜测是您的导航服务未向MenuItems()注册导航,以便导航使用此

(Application.Current.RootVisual as PhoneApplicationFrame).Navigate(new Uri("/Page1.xaml", UriKind.Relative));

考虑一下 - 如果您使用Custom User Control来实施幻灯片菜单

会更容易