我正在制作一个小型绘画程序,我希望用户能够将他们的作品保存到文件中。但每当我尝试保存某些内容时,都会导致“System.NullReferenceException”。另外,如何为用户选择保存的格式?欢呼声。
用于保存的代码:
private void opslaan(object sender, EventArgs e)
{
Schets schets;
SaveFileDialog fileOpslaan = new SaveFileDialog();
fileOpslaan.Title = "Bestand opslaan";
fileOpslaan.AddExtension = true;
fileOpslaan.Filter = "Bitmap Afbeelding (*.bmp)|*.bmp|JPEG Afbeelding (*.jpeg)|*.jpeg|GIF Afbeelding (*.gif)|*.gif|PNG Afbeelding (*.png)|*.png";
if (fileOpslaan.ShowDialog() == DialogResult.OK)
{
schets.bitmap.Save(fileOpslaan.FileName);
}
}
答案 0 :(得分:0)
Schets schets = ... //Say here what your schets is, otherwise it's null.