使用C#在移动应用程序中保存对话框

时间:2010-07-01 10:13:02

标签: c# windows-mobile

这是我的代码

     SaveFileDialog dialog = new SaveFileDialog();
      if (dialog.ShowDialog() == DialogResult.OK)
      {
         aspectRatioPictureBox1.Photo.Save(dialog.FileName,
          System.Drawing.Imaging.ImageFormat.Bmp);
      }
      dialog.Dispose();

我想将文件保存在mypictures文件夹中,默认使用用户指定的名称

1 个答案:

答案 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.