Exemplo n.º 1
0
 private void BackgroundBtn_Click(object sender, EventArgs e)
 {
     IDDBackgroundSetup f = new IDDBackgroundSetup(ah.det, meas.Background);
     if (f.ShowDialog() == DialogResult.OK)
     {
         f.GetBP.CopyTo(meas.Background);
     }
 }
Exemplo n.º 2
0
        private void BackgroundBtn_Click(object sender, EventArgs e)
        {
            IDDBackgroundSetup f = new IDDBackgroundSetup(ah.det, meas.Background);

            if (f.ShowDialog() == DialogResult.OK)
            {
                f.GetBP.CopyTo(meas.Background);
            }
        }
Exemplo n.º 3
0
        private void MaintainBackgroundSetupClick(object sender, RoutedEventArgs e)
        {
            IDDBackgroundSetup f = new IDDBackgroundSetup();

            f.ShowDialog();
        }
Exemplo n.º 4
0
 private void MaintainBackgroundSetupClick(object sender, RoutedEventArgs e)
 {
     IDDBackgroundSetup f = new IDDBackgroundSetup();
     f.ShowDialog();
 }