命名空间中不存在名称"CartesianChart" "using:LiveCharts.Uwp"



我正在尝试在UWP应用程序中使用LiveCharts库。我通过NuGet安装了LiveCharts和LiveCharts.Uwp。我按照 LiveCharts 网站上提供的步骤重新创建了他们的第一个示例,但我总是在 XAML 文件中收到以下错误:

  • 命名空间"using:LiveCharts.Uwp"中不存在名称"CartesianChart"

  • 属性"系列"在类型"笛卡尔图"中找不到。

(见所附两图)。

XAML 代码和错误

C# 代码和解决方案资源管理器

以下是我的MainPage.xaml

和MainPage.xaml.cs的代码:

MainPage.xaml:

<Page
    x:Class="LC2.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LC2"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:lvc="using:LiveCharts.Uwp"
    mc:Ignorable="d">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <lvc:CartesianChart Series="{Binding SeriesCollection}" />
    </Grid>
</Page>

主页.xaml.cs

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
using Windows.UI.Xaml.Controls;
using LiveCharts;
using LiveCharts.Uwp;
// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
namespace LC2
{
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    {
        public MainPage()
        {
            this.InitializeComponent();
            SeriesCollection = new SeriesCollection
            {
                new LineSeries
                {
                    Values = new ChartValues<double> { 3, 5, 7, 4 }
                },
                new BarSeries
                {
                    Values = new ChartValues<decimal> { 5, 6, 2, 7 }
                }
            };
        }
        public SeriesCollection SeriesCollection { get; set; }
    }
}

我无法重现此问题。我使用Visual Studio 2017并使用以下命令行:"PM>安装包LiveCharts.Uwp"。看起来你尚未成功添加引用实时图表.UWP。尝试清除 Nuget 缓存并重新安装包。以下是有关如何清除缓存的参考。

你试过清理你的项目吗?右键单击解决方案 -> 清洁解决方案。

如果它不起作用,我也会尝试手动删除binobj文件夹。

相关内容

  • 没有找到相关文章

最新更新