回复:silverlight 4 中的扩展器控制
我已经安装了最新的 silverlight 工具包并将扩展器控件拖到我的设计中,名称空间出现某种错误,并且在添加控件后我的智能感知停止工作,以下是添加到的 xmlns当我将控件拖到 xaml 编辑器上时的应用程序:
xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"
任何人都可以确定为什么会发生这种情况吗?
谢谢
I have installed the latest silverlight toolkit and dragged the expander control onto my design, there is some kind of an error going around with the name spaces, and my intellisense stopped to work after I added the control, following is the xmlns that is added to the application when I dragged the control onto the xaml editor:
xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"
Can anyone please identify why would this happen?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自从您发布问题以来已经很长时间了,但如果您仍然遇到问题,我告诉您我也遇到了这个问题,而且是版本冲突。在Silverlight 4中,工具包的控件被集成到框架中。并且您的 xmlns:toolkit 应引用 dll,而不是 http uri。
我的问题是我使用的是 RC 版本的 Blend。所以我建议你检查你的 VS2010、Blend 和 Silverlight 版本以确保它们是一致的。
再见
It's been a long time since you posted your question, but in the case you still have the problem, I tell you that I had it too and it was a conflict in versions. In Silverlight 4, controls of the toolkit are integrated to the framework. And your xmlns:toolkit should reference a dll, not a http uri.
My problem was I was using RC version of Blend. So I advise you to check your VS2010, Blend and Silverlight version to make sure they're aligned.
bye