예제 #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);
     }
 }
예제 #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);
            }
        }
예제 #3
0
        private void MaintainBackgroundSetupClick(object sender, RoutedEventArgs e)
        {
            IDDBackgroundSetup f = new IDDBackgroundSetup();

            f.ShowDialog();
        }
예제 #4
0
 private void MaintainBackgroundSetupClick(object sender, RoutedEventArgs e)
 {
     IDDBackgroundSetup f = new IDDBackgroundSetup();
     f.ShowDialog();
 }