您好我正在使用MVVM模型的WPF應用程序。我在打開我的申請表時遇到了XAML解析器異常。它說,像如何解決WPF中的XAML解析器異常?
無法加載文件或程序集 「Telerik.Windows.Controls.DataVisualization, 公鑰= 5803cfa389c90ce7」或它的一個依賴。 系統找不到指定的文件。
我有我的項目的引用文件夾下這個DLL文件的參考,也是我refered在我的XAML爲
"xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation "
.
.
.
<DataTemplate>
// The Below line i am getting that exception
<telerik:RadColumnSparkline ShowAxis="False" ShowFirstPointIndicator="False" ShowLastPointIndicator="False" ShowHighPointIndicators="False" ShowLowPointIndicators="False" EmptyPointBehavior="DropPoint" ItemsSource="{Binding SizeProfileSparkLine}" Width="140" Height="24"/>
</DataTemplate>
我提到該DLL在我的項目,但我得到這個例外。我無法找到如何解決這個問題。任何人都可以告訴我這個問題的解決方案嗎?
謝謝..
可能DataVisualization依賴於其他程序集。你有沒有檢查InnerException?它通常說明爲什麼裝配不能加載 – Nikolay 2012-04-20 11:43:29