1

我想创建一个程序,将 bmp 图片保存到我的文档中并将该图片用作墙纸。到目前为止,我设法创建了这个程序,它运行得非常好。但是有一个问题,我不知道如何将 bmp 文件保存到我的文档中(每台计算机都有不同的路径)。请帮助我找到一种方法来找到我的文档的路径。

System.Drawing.Image img = Properties.Resources.pic;
img.Save("D:\\wall.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true);
key.SetValue(@"Wallpaper", "D:\\wall.bmp");
RegistryKey key2 = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true);
key2.SetValue(@"WallpaperStyle", 2.ToString());
key2.SetValue(@"TileWallpaper", 0.ToString());
SystemParametersInfo(
           SPI_SETDESKWALLPAPER, 
           0, 
           "D:\\wall.bmp", 
           SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE);
4

2 回答 2

4

尝试

Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
于 2013-06-02T19:40:33.650 回答
1

我怀疑你想要Environment.SpecialFolder枚举:

http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx

并将其与Environment.GetFolderPath

http://msdn.microsoft.com/en-us/library/system.environment.getfolderpath.aspx

于 2013-06-02T19:39:13.343 回答