WPF 实时图表 - XAML 代码未链接到 C# 代码



我正在努力处理实时图表。我正在使用 WPF。

我想构建一个条形图,按皮带颜色显示空手道俱乐部的成员数量。我的学习项目之一。

按照他们的文档: https://lvcharts.net/App/examples/v1/wpf/Basic%20Column

我在 xaml 中收到错误:

d:DataContext="{d:DesignInstance local:Charts}" '名称"图表"在命名空间"clr-namespace:空手道俱乐部"中不存在">

标签格式化程序="{绑定格式化程序}" "在类型图表中找不到方法格式化程序">

如果我删除 DataContext 代码,图形会显示,但它不使用我的任何值。 我一定缺少如何将 XAML 代码链接到 C# 代码...? 我弄错了类/命名空间路径吗?

我的 XAML 代码:

<UserControl x:Class="KarateClub.Charts"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
xmlns:local="clr-namespace:KarateClub"
xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
mc:Ignorable="d" 
d:DesignHeight="400" d:DesignWidth="1000" d:DataContext="{d:DesignInstance local:Charts}" >
<Grid Background="White" Width="1000" Height="550">
<Grid Background="White" Margin="33,45,239,170">
<lvc:CartesianChart Series="{Binding SeriesCollection}" LegendLocation="Left">
<lvc:CartesianChart.AxisX>
<lvc:Axis Title="Belts" Labels="{Binding Labels}"></lvc:Axis>
</lvc:CartesianChart.AxisX>
<lvc:CartesianChart.AxisY>
<lvc:Axis Title="Members" LabelFormatter="{Binding Formatter}"></lvc:Axis>
</lvc:CartesianChart.AxisY>
</lvc:CartesianChart>
</Grid>
</Grid>
</UserControl>

我的 C# 代码:

using System;
using System.Windows.Controls;
using LiveCharts;
using LiveCharts.Wpf;
namespace KarateClub
{
public partial class Charts : UserControl
{
public SeriesCollection SeriesCollection { get; set; }
public string[] Labels { get; set; }
public Func<double, string> Formatter { get; set; }

public Charts()
{
InitializeComponent();
SeriesCollection = new SeriesCollection
{
new ColumnSeries
{
Title = "2020",
Values = new ChartValues<double> { 1, 5, 3, 5, 7, 3, 9, 2, 3 }
}
};
Labels = new[] { "White", "Yellow", "Orange", "Green", "Blue", "Purple", "Brown", "Red", "Black" };
Formatter = value => value.ToString("N");
DataContext = this;
}
}
}

您当前正在使用由设计器生成的Charts的设计时实例。此实例是自动生成的,不包含任何数据。这是默认行为,由标记扩展DesignInstanceExtensionIsDesignTimeCreatable属性控制。默认情况下,IsDesignTimeCreatable返回false,它指示设计器使用反射(绕过任何构造函数(创建假实例。

若要使用正确构造的指定类型的设计时实例,必须将此属性显式设置为true

<UserControl x:Class="KarateClub.Charts"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
xmlns:local="clr-namespace:KarateClub"
d:DataContext="{d:DesignInstance local:Charts, IsDesignTimeCreatable=True}" >
...
</UserControl>

现在,设计器将使用构造函数而不是使用反射来创建实例。

显然,此 Blend 设计时属性没有很好的文档记录。若要了解详细信息,请参阅Microsoft文档:Silverlight 设计器中的设计时属性

您遵循的示例没有说d:DataContext="{d:DesignInstance local:Charts}"

它说d:DataContext="{d:DesignInstance local:BasicColumn}".

最新更新