/// <summary>
 /// Removes the given <paramref name="vertex"/> from graph.
 /// </summary>
 /// <param name="vertex">Vertex to remove.</param>
 protected virtual void RemoveVertexControl([NotNull] TVertex vertex)
 {
     RunDestructionTransition(VerticesControls[vertex], false);
     VerticesControls.Remove(vertex);
 }