/// <summary> /// Pushes a notification that the value of a tag field contained within the tag block has been changed. /// </summary> public void NotifyValueChanged() { //Prepare EventArgs e = new EventArgs(); //Set dirty Owner.IsDirty = true; //Notify property changed... NotifyPropertyChanged(nameof(Name)); //Call OnFieldValueChanged OnFieldValueChanged(e); //Raise event FieldValueChanged?.Invoke(this, e); }
void OnFieldValueChanged() { FieldValueChanged?.Invoke(this); }