Salut, si c'est pour suivre 2 points :
private const string s = "http://www.csharpfr.com/";
protected override void OnPaint( PaintEventArgs args )
{
//base.OnPaint( args );
Graphics g = args.Graphics;
g.TranslateTransform( 20.0f, 20.0f );
g.RotateTransform( 45.0f );
g.DrawString( s, this.Font, SystemBrushes.ControlText, 10.0f, 10.0f );
}
C'est possible aussi avec un GraphicsPath.