コード例 #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
ファイル: MainWindow.xaml.cs プロジェクト: tempbottle/INCC6
        private void MaintainBackgroundSetupClick(object sender, RoutedEventArgs e)
        {
            IDDBackgroundSetup f = new IDDBackgroundSetup();

            f.ShowDialog();
        }
コード例 #4
0
ファイル: MainWindow.xaml.cs プロジェクト: tempbottle/INCC6
 private void MaintainBackgroundSetupClick(object sender, RoutedEventArgs e)
 {
     IDDBackgroundSetup f = new IDDBackgroundSetup();
     f.ShowDialog();
 }