这是我的代码
SaveFileDialog dialog = new SaveFileDialog();
if (dialog.ShowDialog() == DialogResult.OK)
{
aspectRatioPictureBox1.Photo.Save(dialog.FileName,
System.Drawing.Imaging.ImageFormat.Bmp);
}
dialog.Dispose();
我想将文件保存在mypictures文件夹中,默认使用用户指定的名称
答案 0 :(得分:1)
为什么要使用SaveFileDialog
?提示用户提供文件名以保存并将文件保存到具有该文件名的MyPictures
特殊文件夹。
Environment.SpecialFolder special = Environment.SpecialFolder.MyPictures;
string MyPicturesLocation = Environment.GetFolderPath(special);
//prompt the user for file-name and save it to MyPicturesLocation here.