Unable to bind the WPF ChartPlotter to the View using MVVM

岁酱吖の 提交于 2019-12-12 02:13:16

问题


I just followed this to create a simple Chart Plotter using MVVM. But I am unable to bind the data-source Output image.

XAML

<Window
    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:GrayPlotter"
    xmlns:d3="http://research.microsoft.com/DynamicDataDisplay/1.0" x:Class="GrayPlotter.MainWindow"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="117*"/>
        <ColumnDefinition Width="192*"/>
        <ColumnDefinition Width="143*"/>
        <ColumnDefinition Width="58*"/>
        <ColumnDefinition Width="7*"/>
    </Grid.ColumnDefinitions>
    <d3:ChartPlotter x:Name="chartplot" Grid.ColumnSpan="3" HorizontalAlignment="Left" Height="168" Margin="43,65,0,0" VerticalAlignment="Top" Width="379">
        <d3:LineGraph DataSource="{Binding Plotvalue}"></d3:LineGraph>
    </d3:ChartPlotter>
</Grid>

MainWindowViewModel.cs

namespace GrayPlotter.ViewModel
{
class MainWindowViewModel : ObservableObject
{
    ChartPlotter Plotvaluetemp = new ChartPlotter();

    ChartPlotter plotvalue = null;
    public ChartPlotter Plotvalue
    {
        get { return plotvalue; }
        set
        {
            plotvalue = value;
            RaisePropertyChangedEvent("Plotvalue");
        }
    }

    class plotData
    {
        public ObservableDataSource<Point> Data { get; set; }

        public plotData()
        {
            Data = new ObservableDataSource<Point>();
        }
    }

    plotData plotDatavalue = new plotData();

    public void UpdateplotInformation()
    {
        double[] my_array = new double[10];

        for (int i = 0; i < my_array.Length; i++)
        {
            my_array[i] = Math.Sin(i);
            plotDatavalue.Data.Collection.Add(new Point(i, my_array[i]));
        }
        Plotvaluetemp.AddLineGraph(plotDatavalue.Data);         
        Plotvalue = Plotvaluetemp;        
    }
}
}

And Mainwindow.xaml.cs

namespace GrayPlotter
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
/// 

public partial class MainWindow : Window
{
    MainWindowViewModel viewModel ;

    public MainWindow()
    {
        InitializeComponent();
        viewModel = new MainWindowViewModel();        
        this.DataContext = viewModel;
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {  
        viewModel.UpdateplotInformation();
    }
}
}

I am just near but what am I missing?


回答1:


Try to change your xaml =>

DataSource="{Binding Data}"

And your back to =>

private ObservableDataSource<Point> data;

    public ObservableDataSource<Point> Data
    {
        get { return data; }
        set
        {
            data = value;
            RaisPropertyChangedEvent("Data");
        }
    }

    public void UpdateplotInformation()
    {
        var list = new List<Point>();
        for (int i = 0; i < 10; i++)
        {
            list.Add(new Point(i, Math.Sin(i)));
        }
        Data = new ObservableDataSource<Point>(list);
    }


来源:https://stackoverflow.com/questions/41756564/unable-to-bind-the-wpf-chartplotter-to-the-view-using-mvvm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!