使用 Win32 使窗口透明?
使用Python Win32扩展,如何使Windows XP上的任意窗口透明?
Using Python Win32 extensions, how do you make an arbitrary window on Windows XP transparent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
SetLayeredWindowsAttributes 示例:
SetLayeredWindowsAttributes example:
您可以使用 SetLayeredWindowAttributes 用于创建透明窗口的WIN32 API函数:
这里< /a> 是一个代码示例,可用于包装 WIN32 API 函数以设置透明度。
You can use the SetLayeredWindowAttributes WIN32 API function for creating transparent windows:
Here is a code sample that you can use for wrapping WIN32 API functions for setting transparency.
这不适用于 Windows 10。
This does not work for Windows 10.