开发者

How to draw string on an image to be assigned as the background to a control in Winforms?

The string length can change, height is the same. The font is large for visibility.

But how do I do thi开发者_如何学Gos?

I know painting on the control directly. But how do I do this without creating an image file, but all in memory. Because the string image will change with user interaction.


Something like ...

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();
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜