private void mnuToFront_Click(object sender, EventArgs e)
 {
     if (currentShape == null)
     {
         return;
     }
     shapes.BringShapeToFront(currentShape);
     Invalidate(currentShape.GetLargestPossibleRegion());
 }