我仍然是Visual Studio的新手。我有一些透明图像,我希望以后在彼此之上,以便它们在放在一起时显示为一个图像。最重要的是,我使用DrawString在图像上绘制文本。我一直在使用DrawImage将图像显示到PictureBox中,但我似乎无法立即将它们全部显示出来。
编辑:这是我一直在使用的一些代码。
private void drawTextBox()
{
var image = new Bitmap(this.pictureBox_TextBox.Width, this.pictureBox_TextBox.Height);
var graphics = Graphics.FromImage(image);
graphics.DrawImage(new Bitmap(@"C:\Users\Home\Documents\Visual Studio 2013\Projects\WindowsFormsApplication1\WindowsFormsApplication1\Resources\TextBox.png"), new Point(0, 151));
this.pictureBox_TextBox.Image = image;
}