我正在尝试制作一种在我第一次打开应用程序时绘制图片框背景的方法。有没有办法做到这一点?
我试过这个
private void Form1_Load(object sender, EventArgs e)
{
DrawBackground();
}
public void DrawBackground()
{
Graphics SimWindow = pictureBoxSimDisplay.CreateGraphics();
SolidBrush brush = new SolidBrush(Color.Green);
SimWindow.FillRectangle(brush, 0, 211, 491,5);
}
但它不工作。