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.
http://pastebin.com/z9r43y0L
试试这个例子,然后按“保存”按钮。
TextCtrl 周围的红框仍然存在。我不想要这个红框。有谁知道如何解决这一问题?
我已经能够在 Windows 7 上使用 wxPython 2.9.3 重现类似的东西。我没有在 TextCtrl 周围看到一个红色的“框架”,但我确实在每个角落都有一个红色像素。当我将鼠标悬停在 TextCtrl 上时,这些红色像素消失了。
我发现更换线路
self.editname.Refresh()
在OnClick函数中
OnClick
self.editname.Parent.Refresh()
无需悬停即可消除角落处的红色像素。