// Show configuration options private void optionsToolStripMenuItem_Click(object sender, EventArgs e) { OptionsForm optionsForm = new OptionsForm( ); optionsForm.AutoDetectFocalLength = autoDetectFocalLength; optionsForm.CameraFocalLength = imageProcessor.CameraFocalLength; optionsForm.GlyphSize = imageProcessor.GlyphSize; if (optionsForm.ShowDialog( ) == DialogResult.OK) { imageProcessor.GlyphSize = optionsForm.GlyphSize; autoDetectFocalLength = optionsForm.AutoDetectFocalLength; if (!autoDetectFocalLength) { imageProcessor.CameraFocalLength = optionsForm.CameraFocalLength; } } }
// Show configuration options private void optionsToolStripMenuItem_Click( object sender, EventArgs e ) { OptionsForm optionsForm = new OptionsForm( ); optionsForm.AutoDetectFocalLength = autoDetectFocalLength; optionsForm.CameraFocalLength = imageProcessor.CameraFocalLength; optionsForm.GlyphSize = imageProcessor.GlyphSize; if ( optionsForm.ShowDialog( ) == DialogResult.OK ) { imageProcessor.GlyphSize = optionsForm.GlyphSize; autoDetectFocalLength = optionsForm.AutoDetectFocalLength; if ( !autoDetectFocalLength ) { imageProcessor.CameraFocalLength = optionsForm.CameraFocalLength; } } }