UWP应用程序,如何更改登录屏幕图像
本文关键字:登录 屏幕 图像 何更改 应用程序 UWP | 更新日期: 2023-09-27 18:19:49
Windows10 UWP API允许您更改桌面背景图像和锁屏图像,如下所示:
// set wallpaper
UserProfilePersonalizationSettings profileSettings = UserProfilePersonalizationSettings.Current;
if (wallpaper)
{
success = await profileSettings.TrySetWallpaperImageAsync(storageFile);
} // or lockscreen
else
{
success = await profileSettings.TrySetLockScreenImageAsync(storageFile);
}
但是如何更改登录屏幕图像呢?
没有API用于更改登录屏幕背景图像。
图像本身是一个嵌入的PRI资源,无法轻易更改(您需要破解PRI文件才能更改图像)。
有一个组策略设置可以隐藏图像并使用纯色,但是没有Windows运行时API可以直接修改组策略,您必须自己更改注册表设置:
- 找到钥匙
HKEY_LOCAL_MACHINE'Software'Policies'Microsoft'Windows'System
- 创建或设置DWORD值
DisableLogonBackgroundImage
到1