在PictureBox控件上绘制文本可以通过以下步骤实现:
Graphics g = e.Graphics;
Font font = new Font("Arial", 12, FontStyle.Bold);
Brush brush = Brushes.Black;
g.DrawString("Hello World", font, brush, new PointF(50, 50));
在这个例子中,我们在PictureBox控件的(50, 50)位置绘制了文本"Hello World",使用了指定的字体和颜色。
最后,不要忘记在PictureBox的Paint事件中执行以上代码,以便在控件上绘制文本。