在 Silverlight 中单击按钮时断点未命中 + WCF RIA 服务
我使用 WCF RIA 服务和实体数据模型创建了一个 silverlight 应用程序。
在 mainPage.xaml 页面中,我放置了一个按钮,单击该按钮时正在执行某些操作。我在按钮单击事件上放置了一个断点,但当我单击该按钮时它没有命中断点。
请帮忙解决同样的问题!
谢谢 皮尤什
I have created a silverlight app using WCF RIA Services and Entity Data Model.
In mainPage.xaml page I have dropped a button and on click of that button certain operation is performing.I have put a breakpoint on button click event, but its not hitting the breakpoint when I am clicking the button.
Kindly help regarding the same!!!
Thanks
Piyush
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 Web 项目中启用“Silverlight”调试。
打开Web项目的“属性”并转到页面“Web” 。在“调试器”部分中,选中“Silverlight”复选框。
另一个问题可能是,您当前的构建配置设置为“发布”。将其更改为“调试”。
You need to enable "Silverlight" debugging in the web project.
Open the "Properties" of the web project and goto page "Web". In the section "Debuggers" check the Checkbox "Silverlight".
Another problem could be, that your current build configuration is set to "Release". Change it to "Debug".
此行为可能是由于在构建解决方案时打开 XAP 文件(在某些 ZIP 查看器中)引起的。 Visual Studio 对于无法用新 XAP 替换旧 XAP 保持沉默,并且您的断点将“不同步”。
This behavior can be caused by XAP file being opened (in some ZIP viewer) while building your solution. Visual Studio is quiet about not being able to replace the old XAP with new one and your breakpoints will be "out of sync".