How to: Draw Text at a Specified Location
Visual Studio 2010
When you perform custom drawing, you can draw text in a single horizontal line starting at a specified point. You can draw text in this manner by using the DrawString overloaded method of the Graphics class that takes a Point or PointF parameter. The DrawString method also requires a Brush and Font
You can also use the DrawText overloaded method of the TextRenderer that takes a Point. DrawText also requires a Color and a Font.
The following illustration shows the output of text drawn at a specified point when you use the DrawString overloaded method.

To draw a line of text with GDI+
Use the DrawString method, passing the text you want, Point or PointF, Font, and Brush.