Exemplo n.º 1
0
 private void Model_PCRReadingTaken(double reading)
 {
     plotter.Dispatcher.Invoke(
         (Action)(() =>
     {
         graphPCR.Add(new PCRPoint(reading, ++graphPCRCycle));
     }
                  )
         );
 }
Exemplo n.º 2
0
 private void Model_PCRReadingTaken1(double reading, double temp)
 {
     pcrplotter.Dispatcher.Invoke(
         (Action)(() =>
         {
             graphPCR.Add(new PCRPoint(reading, temp));
         }
         )
         );
 }