C# WPF OxyPlot 错误图在命名空间中不存在

问题描述 投票:0回答:3

您好,我在 WPF 中配置 oxyplot 时遇到问题。我找到了一些解决方案,但没有任何效果。我发现这是最好的http://blog.bartdemeyer.be/2013/03/creating-graphs-in-wpf-using-oxyplot/ 但仍然有问题,我在 XAML 文件中收到此错误:

命名空间 codeplex 中不存在名称图

MainWindow.xaml 文件:

<Window x:Class="OxyPlotDemo.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:OxyPlotDemo"
     xmlns:oxy="http://oxyplot.codeplex.com"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">

<Grid>
    <oxy:Plot x:Name="Plot1" Title="A Graph" Model="{Binding PlotModel}" Margin="10" Grid.Row="1">
    </oxy:Plot>
</Grid>

MainWindow.xaml.cs

using System.Windows;
namespace OxyPlotDemo

{

public partial class MainWindow : Window
{

    private ViewModels.MainWindowModel viewModel;
    public MainWindow()
    {

        viewModel = new ViewModels.MainWindowModel();
        DataContext = viewModel;

        InitializeComponent();
    }
}
}

MainWindowModel.cs

using  System.ComponentModel;
using OxyPlot;


namespace OxyPlotDemo.ViewModels
{
    public class MainWindowModel : INotifyPropertyChanged
    {
        private PlotModel plotModel;
        public PlotModel PlotModel
        {
            get { return plotModel; }
            set { plotModel = value; OnPropertyChanged("PlotModel"); }
    }

    public MainWindowModel()
    {
        PlotModel = new PlotModel();
    }

    public event PropertyChangedEventHandler PropertyChanged;

    //[NotifyPropertyChangedInvocator]
    protected virtual void OnPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
    }
}
}

也许有人有更好的解决方案。我只需要显示一些图表,其中包含来自传感器的大量数据,而不是实时的。

c# wpf oxyplot
3个回答
6
投票

从 lib 版本 1.x 迁移到 2.1 时,我对 NuGet 的 OxyPlot lib 也遇到了同样的问题。 所以我发现,在版本 2.1 中,

Plot
类被移至 另一个库,请参阅发布历史记录他们的 github 页面。 这对我有用:

  1. 通过 NuGet 将附加库 OxyPlot.Contrib.Wpf 下载到您的项目。
  2. 将这些声明添加到 XAML:
    • xmlns:oxy="http://oxyplot.org/wpf"

    • xmlns:oxycontrols="http://oxyplot.org/wpf/contrib"

    • <oxycontrols:Plot .../>


3
投票
<Window x:Class="Universal_trc_csvParser.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:Universal_trc_csvParser"
        xmlns:oxy="http://oxyplot.org/wpf"
        mc:Ignorable="d"
        Title="Window1" Height="450" Width="800">

    <Window.DataContext>
        <local:MainViewModel/>
    </Window.DataContext>


    <Grid>
        <oxy:PlotView Model="{Binding MyModel}"/>
    </Grid>
</Window>

public class MainViewModel
    {
    public MainViewModel()
        {
        this.MyModel = new PlotModel { Title = "Example 1" };
        this.MyModel.Series.Add(new FunctionSeries(Math.Cos, 0, 10, 0.1, "cos(x)"));
        }

    public PlotModel MyModel { get; private set; }
    }

这对我有用。


1
投票

我也有同样的问题。 所以我所做的就是将我的“OxyPlot.Wpf”降级到版本 1.0.0。您所说的示例工作正常,没有错误“名称图在命名空间中不存在”。

 <oxy:Plot x:Name="Plot1" Title="A Graph" Model="{Binding PlotModel}" Margin="10" Grid.Row="1">
    </oxy:Plot>
© www.soinside.com 2019 - 2024. All rights reserved.