Interaction logic for ProgPlot.xaml
Inheritance: System.Windows.Window
Beispiel #1
0
 private void mnuShowPlot_Click(object sender, RoutedEventArgs e)
 {
     if (isplotReady == 1)
     {
         ProgPlot frmPlot = new ProgPlot(plotpath, PlotVals, plot);
         frmPlot.ShowDialog();
     }
     else
         System.Windows.MessageBox.Show("No Plot");
 }
Beispiel #2
0
 private void mnuShowPlot_Click(object sender, RoutedEventArgs e)
 {
     ProgPlot frmPlot = new ProgPlot(PBE);
     frmPlot.ShowDialog();
 }