在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事件中執行以上代碼,以便在控件上繪制文本。