Visiblox 无效的程序集引用
我正在努力解决有关 visiblox 的问题。我对 WPF 概念还很陌生,但我正在掌握它的窍门。我对经典形式已经有些厌倦了。
我的问题是设计者不断告诉我 XAML 包含错误。我在错误列表中收到以下错误:
Unable to load the metadata for assembly 'Visiblox.Charts'.
This assembly may have been downloaded from the web.
See http://go.microsoft.com/fwlink/?LinkId=179545.
The following error was encountered during load: Could not load file or assembly
'Visiblox.Charts, Version=2.1.4.31043, Culture=neutral, publicKeyToken=1543c03f04c4461b' or one of its dependencies.
我已添加对项目的引用,并且添加了行:
xmlns:charts="clr-namespace:Visiblox.Charts; assembly=Visiblox.Charts"< /code>
我可以构建并运行该项目,但设计者不断告诉我我的程序集不正确。我尝试清理并重建该项目。重新启动了 Visual Studio 和计算机,但似乎没有任何效果。有人有任何线索吗?先感谢您。
I am struggling with a problem regarding to visiblox. I am quite new to the WPF concept, but I am getting the hang of it. I have quite some expirence with the classic forms.
My problem is that the designer keeps telling me that the XAML contains errors. And I get the folling error in my error list:
Unable to load the metadata for assembly 'Visiblox.Charts'.
This assembly may have been downloaded from the web.
See http://go.microsoft.com/fwlink/?LinkId=179545.
The following error was encountered during load: Could not load file or assembly
'Visiblox.Charts, Version=2.1.4.31043, Culture=neutral, publicKeyToken=1543c03f04c4461b' or one of its dependencies.
I have added the reference to the project, and I have added the line:
xmlns:charts="clr-namespace:Visiblox.Charts;assembly=Visiblox.Charts"
I can build and run the project, but the designer keeps telling me that my assemblies are not correct. I tried to clean and rebuilt the project. Restarted Visual Studio and the computer, but nothing seems to work. Anyone any clue? Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议点击它提供的链接: http://go.microsoft.com/fwlink/ ?LinkId=179545
问题在于该 dll 被 Windows 安全性“锁定”,您需要解锁它才能引用它。指定的链接告诉您如何操作。
I'd suggest following the link it provides: http://go.microsoft.com/fwlink/?LinkId=179545
The problem is that the dll is "locked" by windows security and you need to unlock it before you can reference it. The link specified tells you how.