${core_DictionaryChangedEventArgs_Title}

${core_DictionaryChangedEventArgs_Description}

Inheritance: System.EventArgs
 private void Feature_AttributeValueChanged(object sender, DictionaryChangedEventArgs e)
 {
     if (!this.isUpdatedByCommitButton &&
         e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Replace)
     {
         UpdateDataForm(e.Key, e.NewValue);
     }
 }
Exemplo n.º 2
0
 private void Feature_ValueChanged(object sender, DictionaryChangedEventArgs e)
 {
     EventHandler<DictionaryChangedEventArgs> attributeValueChanged = this.AttributeValueChanged;
     if (attributeValueChanged != null)
     {
         attributeValueChanged(this, e);
     }
 }