0

我正在努力解决有关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"

我可以构建并运行该项目,但设计师一直告诉我我的程序集不正确。我试图清理并重建项目。重新启动 Visual Studio 和计算机,但似乎没有任何效果。任何人有任何线索?先感谢您。

4

1 回答 1

4

我建议按照它提供的链接:http: //go.microsoft.com/fwlink/ ?LinkId=179545

问题是 dll 已被 Windows 安全“锁定”,您需要先将其解锁,然后才能引用它。指定的链接告诉你如何。

于 2012-02-23T09:42:51.043 回答