public void RemoveSpecific(Shape selected) { if (ShapeList.Count != 0) { Selection.RemoveAll(x => x == selected); ShapeList.RemoveAll(x => x == selected); } }