Is there a way to draw a circle by specifying the center of the circle rather than the upper left corner?

This is what I'm using to draw the circle:

vb.ent Code:
  1. Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
  2.         Dim pencolor As New Pen(Color.Blue, 3)
  3.  
  4.         Me.CreateGraphics.DrawEllipse(pencolor, 125, 100, 75, 75)
  5.  
  6.     End Sub

The first two numbers 125 and 100 represent the x and y locations of the upper left hand corner of the circle. I'd like the x and y locations to represent the center of the circle. Is there a somewhat simple way to do this?

Any suggestions are appreciated as always!