Python 中的 Windows 7 MARGINS 结构
我正在尝试在 Python 中使用一些更有趣的 Windows Aero 效果。
DwmExtendFrameIntoClientArea 函数可用于将 Aero 玻璃扩展到客户区域。它需要一个窗口句柄和一个指向 MARGINS 结构的指针。我已经知道如何在 Python 中获取窗口句柄;但是,我不知道如何制作边距结构。
这里是到目前为止我所拥有的:
import Tkinter as tk
import string
import ctypes
root = tk.Tk()
handle = string.atoi(root.wm_frame(), 0)
dwm = ctypes.windll.dwmapi
# needs pointertomarginsstruct
dwm.DwmExtendFrameIntoClientArea(handel, pointertomarginsstruct)
root.mainloop()
I'm attempting to get some of the more interesting Windows Aero effects working in Python.
The DwmExtendFrameIntoClientArea function can be used to extend the Aero glass into the client area. It requires a Window handle and a pointer to a MARGINS structure. I already know how to get a window's handle in Python; however, I'm unaware of how to make a margins structure.
Here is what I have so far:
import Tkinter as tk
import string
import ctypes
root = tk.Tk()
handle = string.atoi(root.wm_frame(), 0)
dwm = ctypes.windll.dwmapi
# needs pointertomarginsstruct
dwm.DwmExtendFrameIntoClientArea(handel, pointertomarginsstruct)
root.mainloop()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有运行 Win7 来测试这一点,但尝试使用 ctypes 定义结构:
I do not have Win7 running to test this but try defining the struct with ctypes: