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

时间:2017-10-09 20:55:58

标签: uwp livecharts

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

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

  • 该物业'系列'没有在类型' CartesianChart'

  • 中找到

(见附图)。

XAML code and Errors

C# code and Solution Explorer

以下是我的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>

MainPage.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; }
    }
}

2 个答案:

答案 0 :(得分:1)

我无法重现此问题。我使用Visual Studio 2017并使用此命令行:“PM&gt; Install-Package LiveCharts.Uwp”。看起来您还没有成功添加引用LiveCharts.UWP。尝试清除Nuget缓存并再次安装该程序包。 Here是关于如何清除缓存的参考。

答案 1 :(得分:1)

您是否尝试过清洁项目? 右键单击解决方案 - &gt;清洁解决方案

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