Ejemplo n.º 1
0
 public void RemoveActionItem(ActionItem actionItem)
 {
     if (ActionItems == null || actionItem == null || !ActionItems.Contains(actionItem))
     {
         return;
     }
     ActionItems.Remove(actionItem);
     UpdateProperties();
 }