Inheritance: System.EventArgs
Exemplo n.º 1
0
 protected virtual void OnRelationRemoved(RelationshipEventArgs e)
 {
     if (RelationRemoved != null)
     {
         RelationRemoved(this, e);
     }
     OnModified(EventArgs.Empty);
 }
Exemplo n.º 2
0
 protected virtual void OnRelationRemoved(RelationshipEventArgs e)
 {
     RelationRemoved?.Invoke(this, e);
     OnModified(EventArgs.Empty);
 }
Exemplo n.º 3
0
		protected virtual void OnRelationRemoved(RelationshipEventArgs e)
		{
			if (RelationRemoved != null)
				RelationRemoved(this, e);
			OnModified(EventArgs.Empty);
		}