繁体   English   中英

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

[英]WPF Live Charts - XAML code not linking to C# code

我正在为实时图表而苦苦挣扎。 我正在使用 WPF。

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

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

我在 xaml 中遇到错误:

d:DataContext="{d:DesignInstance local:Charts}" '名称 "Charts" 不存在于命名空间 "clr-namespace:KarateClub" '

LabelFormatter="{Binding Formatter}" '在图表类型中找不到方法格式化程序'

如果我删除 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 Docs:Silverlight 设计器中的设计时属性

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM