简体   繁体   English

侧面菜单xaml导航错误Windows Phone 8

[英]Side Menu xaml Navigation Error windows phone 8

I'm currently trying to develop a windows phone 8 app that has a Side Menu. 我目前正在尝试开发具有侧边菜单的Windows Phone 8应用。 I've managed to load 2 different xaml pages (menuitems.xaml & mainpage.xaml). 我设法加载了2个不同的xaml页面(menuitems.xaml和mainpage.xaml)。 So the problem here is that, whenever I try to click on the menu, it gives me an error as follows :- 所以这里的问题是,每当我尝试单击菜单时,都会给我一个错误,如下所示:

System.Windows.ni.dll!MS.Internal.Error.CallApplicationUEHandler(System.Exception e) Unknown 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 System.Windows.ni.dll!MS.Internal.Error.CallApplicationUEHandler(System.Exception e)未知System.Windows.ni.dll!MS.Internal.Error.IsNonRecoverableUserException(System.Exception ex,out inint xresultValue)未知系统。 Windows.ni.dll!MS.Internal.JoltHelper.FireEvent(System.IntPtr unmanagedObj,System.IntPtr unmanagedObjArgs,int argsTypeIndex,intactualArgsTypeIndex,字符串eventName)未知

I've uploaded my source codes here. 我已经在这里上传了我的源代码。 I do hope that I could get some advice on how to get it done. 我确实希望我可以就如何完成该工作获得一些建议。 Thanks! 谢谢!

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

My guess is that your navigation services doesn't register navigation to MenuItems() , in order to navigate use this 我的猜测是,您的导航服务不会将导航注册到MenuItems() ,以便使用此导航

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

For consideration - it will be much easier if you use Custom User Control to implement Slide Menu 考虑一下-如果您使用“ Custom User Control来实现“幻灯片菜单”,它将更加容易

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM