锁定屏幕图像更改

本文关键字:图像 屏幕 锁定 | 更新日期: 2023-09-27 18:01:02

这是我的代码:

Uri u = new Uri(@"C:'roomieUser'w3.tif");
Windows.System.UserProfile.LockScreen.RequestSetImageFeedAsync(u);

我正在尝试更改Windows窗体应用程序中的锁定屏幕。我已经设法在Windows窗体应用程序中使用了WinRT库,有两种方法可以更改图片,一种是上面写的,另一种是下面的

LockScreen.SetImageFileAsync(); //But it requires IStorageFile passed in method

我有图片存储在"资源"文件夹中,有什么方法可以将这些图片转换/使用为IStorageFile吗?

文件路径是正确的,但当我尝试运行时,它显示了一条错误消息,

找不到元素。(HRESULT异常:0x80070490(

锁定屏幕图像更改

LockScreen.RequestSetImageFeedAsync应该使用指向RSS提要的Uri而不是图像进行调用。此方法在Windows 10中已被弃用。

您可以使用StorageFile.GetFileFromApplicationUriAsync从应用程序的资源文件夹中获取文件。