Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使 TextCtrl 具有透明背景?我的意思是看到它背后的桌面。
当前代码:
self.control.SetBackgroundColour(wx.Color(0,0,0,0))
但这只会使背景颜色变黑。
我在 Windows 7 上使用 Python 2.7
据我所知textCtrt,不能透明或使用背景图像,但您可以更改背景颜色。
textCtrt
小费:
您可以通过找出确切的 HEX 颜色值来使用确切的颜色作为背景图像。
示例代码:
self.SetBackgroundColour('#232321')