コード例 #1
0
        private void configSourceDetector_Click(object sender, EventArgs e)
        {
            SourceDetectorConfigWindow sdcWindow = new SourceDetectorConfigWindow();

            sdcWindow.Settings = sdSettings;
            if (sdcWindow.ShowDialog() == DialogResult.OK)
            {
                sdSettings = sdcWindow.Settings;
            }
        }
コード例 #2
0
ファイル: SettingsForm.cs プロジェクト: RoDaniel/featurehouse
 private void configSourceDetector_Click(object sender, EventArgs e)
 {
     SourceDetectorConfigWindow sdcWindow = new SourceDetectorConfigWindow();
     sdcWindow.Settings = sdSettings;
     if (sdcWindow.ShowDialog() == DialogResult.OK)
         sdSettings = sdcWindow.Settings;
 }