2009-10-25 4 views

Répondre

1

Quelque chose comme ...

Image i = new Bitmap(200, 50); 
Graphics g = Graphics.FromImage(i); 
g.DrawString("Message", new Font("Arial", 8), Brushes.Black, new PointF(0,0)); 

pictureBox.Image = i; 
g.Dispose(); 
Questions connexes