有没有一种方法可以使用pinvoke更改锁屏图像(如c#中的墙纸).[DllImport(user32.dll, CharSet = CharSet.Auto)]private static extern Int32 SystemParametersInfo(UInt32 action,UInt32 uParam, string vParam, U...
有没有一种方法可以使用pinvoke更改锁屏图像(如c#中的墙纸).
[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern Int32 SystemParametersInfo(UInt32 action,
UInt32 uParam, string vParam, UInt32 winIni);
private static readonly UInt32 SPI_SETDESKWALLPAPER = 20;
private static UInt32 SPIF_UPDATEINIFILE = 0x1;
private static uint MAX_PATH = 260;
// then I call
SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, file, SPIF_UPDATEINIFILE);
我想对锁定屏幕执行相同的操作(例如Bing Desktop应用程序正在执行的操作)
解决方法:
有了Windows 8标签,是的,您可以:
LockScreen.SetImageFileAsync()(如Windows 8 Lock screen personalization sample in C#所示)(省略了错误处理代码,请检查示例):
StorageFile imageFile = await imagePicker.PickSingleFileAsync();
// Application now has access to the picked file, setting image to lockscreen.
// This will fail if the file is an invalid format.
await LockScreen.SetImageFileAsync(imageFile);
沃梦达教程
本文标题为:在C#中更改Windows锁定屏幕背景图片
基础教程推荐
猜你喜欢
- C#中序列化实现深拷贝,实现DataGridView初始化刷新的方法 2022-10-27
- Linux服务器部署.Net Core笔记:五、安装Nginx 2023-09-26
- 仅在.NET Core 2.0运行时的Linux上缺少运行时存储库错误 2023-09-26
- C# char[]与string byte[]与string之间的转换详解 2023-02-03
- C# WPF 通过委托实现多窗口间的传值的方法 2022-12-31
- 在 C# 中使用 插值字符串 2023-05-12
- C#多线程之线程池(ThreadPool) 2023-05-31
- c#-从Windows Phone 10上的FileOpenPicker访问摄像头 2023-11-27
- 使用c#+IMap实现收取163邮件 2022-12-06
- c# 异步编程基础讲解 2023-04-10