/// <summary> /// Removes a certain element definition from the Block /// </summary> /// <param name="index">Index of the element to delete</param> public void Delete(int index) { DeletePreprocess(); elements.RemoveAt(index); OnPropertyChanged("Elements"); }
/// <summary> /// Removes a certain element definition from the Block /// </summary> /// <param name="index">Index of the element to delete</param> public void Delete(int index) { DeletePreprocess(); elements.RemoveAt(index); }