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.
另一个 wxgrid 问题:创建网格后,我想在所附图像中创建表单
我知道我可以通过 grid.SetCellBackgroundColour(2, 2, "light blue") 设置背景颜色,但是我怎样才能像示例一样将线条涂成金色
您可以使用自定义 Grid 渲染器来做到这一点,您可以在 wx.lib.mixins.gridlabelrenderer 中找到它。wxPython 演示有一个示例。
另一种方法是使用 XLSGrid 小部件,它是 wxPython 中的自定义小部件。还有一个演示。我怀疑它在幕后使用 wx.grid.Grid,所以你可能想看看它的源代码以了解它是如何工作的。