gpt4 book ai didi

c# - 更改后如何恢复/撤消桌面墙纸?

转载 作者:行者123 更新时间:2023-11-30 14:50:53 26 4
gpt4 key购买 nike

我正在创建一个屏幕共享应用程序。启动屏幕共享后,我将桌面墙纸颜色更改为黑色。

问题如何恢复以前的壁纸或 windows 主题?

我正在使用代码将背景更改为纯色,如下所示

另外,这段代码有一个问题,一旦背景被改变使用此代码我无法将图像设置为墙纸但是我能够应用主题。

public class wallpaperHelper
{
public static void SetColor(Color color)
{

// Remove the current wallpaper
NativeMethods.SystemParametersInfo(
NativeMethods.SPI_SETDESKWALLPAPER,
0,
"",
NativeMethods.SPIF_UPDATEINIFILE | NativeMethods.SPIF_SENDWININICHANGE);

// Set the new desktop solid color for the current session
int[] elements = { NativeMethods.COLOR_DESKTOP };
int[] colors = { System.Drawing.ColorTranslator.ToWin32(color) };
NativeMethods.SetSysColors(elements.Length, elements, colors);

// Save value in registry so that it will persist
RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Colors", true);
key.SetValue(@"Background", string.Format("{0} {1} {2}", color.R, color.G, color.B));
}

private static class NativeMethods
{
public const int COLOR_DESKTOP = 1;
public const int SPI_SETDESKWALLPAPER = 20;
public const int SPIF_UPDATEINIFILE = 0x01;
public const int SPIF_SENDWININICHANGE = 0x02;

[DllImport("user32.dll")]
public static extern bool SetSysColors(int cElements, int[] lpaElements, int[] lpaRgbValues);

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern int SystemParametersInfo(int uAction, int uParam, string lpvParam, int fuWinIni);
}
}

最佳答案

您可以在更改为其他墙纸之前获取当前墙纸:

int SPI_GETDESKWALLPAPER = 0x73;
int MAX_PATH = 260;
string wallpaper = new string('\0', (int)MAX_PATH);
NativeMethods.SystemParametersInfo(SPI_GETDESKWALLPAPER, MAX_PATH, wallpaper, 0);

wallpaper = wallpaper.Substring(0, wallpaper.IndexOf('\0'));

恢复旧壁纸时,只需将其传递给SystemParametersInfo

NativeMethods.SystemParametersInfo(
NativeMethods.SPI_SETDESKWALLPAPER,
0,
wallpaper,
NativeMethods.SPIF_UPDATEINIFILE | NativeMethods.SPIF_SENDWININICHANGE);

另外,如果您不想永久更换墙纸,请更改:

NativeMethods.SystemParametersInfo(
NativeMethods.SPI_SETDESKWALLPAPER,
0,
Newwallpaper,
NativeMethods.SPIF_UPDATEINIFILE | NativeMethods.SPIF_SENDWININICHANGE);

收件人:

NativeMethods.SystemParametersInfo(
NativeMethods.SPI_SETDESKWALLPAPER,
0,
Newwallpaper,
0);

这将阻止窗口保存当前更改。当您关闭计算机并再次打开时,您的旧墙纸将被恢复。 如果您在午夜将 WallPaper 更改为敏感的内容并且忘记恢复回来,这将非常有用:)

注意:

如果当前壁纸是您可以复制的主题:

C:\Users\<UserName>\AppData\Roaming\Microsoft\Windows\Themes\TranscodedWallpaper

将其保存在某处。需要时,为该文件设置墙纸,然后将其删除。

对于'.theme'文件,复制

C:\Users\<User-Name>\AppData\Local\Microsoft\Windows\Themes\Custom.theme

将其保存在某处。需要时,为该文件设置墙纸,然后将其删除。

rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:"C:\pathtoYourTheme.theme"

如果您确定旧主题是什么,您可以从以下位置取回:

C:\Windows\Resources\Themes


对于设置颜色问题,是否要去掉墙纸后面的黑色?一种选择是转到 Desktop/Personalize/Desktop backgroundPosition 更改为 Fill。此选项将缩放图像以适应水平和垂直屏幕。

关于c# - 更改后如何恢复/撤消桌面墙纸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35716843/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com