动态数据显示功能无效

时间:2015-09-03 21:02:54

标签: c# wpf xaml xml-namespaces

我已经将这个库安装到我的项目中,我不知道,但是我无法在我的XAML中创建这个...我写了

<d3:

看起来我没有安装此库..有蓝色下划线和错误:

  

Error 2 The type 'd3:Chart' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built. D:\C# Visual Studio\GeneratorWPF\GeneratorWPF\MainWindow.xaml 13 10 GeneratorWPF

@Edit 它是我的XAML

<Window x:Class="GeneratorWPF.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:d3="clr-namespace:DynamicDataDisplay.Markers;assembly=DynamicDataDisplay.Markers"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Generator" Height="350" Width="525" Loaded="Window_Loaded">

我添加了命名空间(我认为),但没有工作图表

2 个答案:

答案 0 :(得分:0)

没有&#34; Chart&#34;您提到的库(https://www.nuget.org/packages/DynamicDataDisplayWpf/)的最新版本中的DynamicDataDisplay.Markers命名空间下的类。

但是还有其他* Chart类,包括该命名空间中的BarChart和PieChart。也许你应该选择那个?

答案 1 :(得分:0)

三件事之一是错误的

  1. 图表不在DynamicDataDisplay.Markers名称空间中。检查课程并确保它是。
  2. DynamicDataDisplay程序集名称不是&#34; DynamicDataDisplay.Markers&#34;。要检查程序集名称,请右键单击DynamicDataDisplay项目,然后单击属性。在“应用程序”选项卡上,应该有一个程序集名称。
  3. 您没有正确引用项目中的程序集。在解决方案资源管理器中查看您的项目,展开引用,并确保在那里列出DynamicDataDisplay程序集。