Exemple #1
0
        private void BtnUnmappedProperties_Click(object sender, EventArgs e)
        {
            var dialog = new SpecifyAttributesDialog(this)
            {
                ConfigValue = Settings.ExtensionConfig.UnmappedProperties
            };
            var result = dialog.ShowDialog();

            if (result == DialogResult.OK)
            {
                Settings.ExtensionConfig.UnmappedProperties = dialog.ConfigValue;
                SaveSettings();
            }
        }
 private void BtnUnmappedProperties_Click(object sender, EventArgs e)
 {
     var dialog = new SpecifyAttributesDialog (this) { ConfigValue = Settings.ExtensionConfig.UnmappedProperties };
     var result = dialog.ShowDialog();
     if (result == DialogResult.OK)
     {
         Settings.ExtensionConfig.UnmappedProperties = dialog.ConfigValue;
         Settings.Save();
     }
 }