我正在尝试将图像添加到 C# 项目并且它始终设置为 NULL,并且我收到此警告“Snake_Game.Form3.GFX”从未分配给,并且始终具有其默认值 null。这是我试图做的。
private Graphics GFX;
public Form3()
{
InitializeComponent();
this.CreateGraphics();
}
在其他功能中我添加了这个:
GFX.DrawImage(Bitmap.FromFile(@"C:\C#\Buton.png"), new Point(0, 0));
我该怎么办?