コード例 #1
0
ファイル: PlotWindow.xaml.cs プロジェクト: EraYaN/EV2020
 public void Update(String title, Matrix<double> plotdata, List<string> legend, double timestep, int[] markers)
 {
     p = (Presenter)this.DataContext;
     p.Update(title, plotdata, legend, timestep, markers);
 }
コード例 #2
0
ファイル: PlotWindow.xaml.cs プロジェクト: EraYaN/EV2020
 public PlotWindow(String title, Matrix<double> plotdata, List<string> legend, double timestep, int[] markers)
 {
     InitializeComponent();
     p = (Presenter)this.DataContext;
     p.Update(title, plotdata, legend, timestep, markers);
 }