Interaction logic for ProgPlot.xaml
상속: System.Windows.Window
예제 #1
0
파일: ProgWin.xaml.cs 프로젝트: zuzhu/pinac
 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");
 }
예제 #2
0
 private void mnuShowPlot_Click(object sender, RoutedEventArgs e)
 {
     ProgPlot frmPlot = new ProgPlot(PBE);
     frmPlot.ShowDialog();
 }