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.
我想知道是否有可能溢出 wxpython 网格中的列标签。我可以通过以下方式在多列上溢出单元格:
self.SetCellSize(0, 0, 3, 1)
但是如何溢出列标签?
我认为目前不支持此功能。最近添加了一种称为 gridlabelrenderer 的“某种”功能,它允许开发人员向列和行添加颜色和字体样式。有关示例,请参见 wxPython 演示。它使用 wx.DC 进行自定义绘图。对我来说,我认为您可以将该代码扩展它(即子类)以使其绘制到您想要的位置……尽管我不知道这将如何影响列大小的变化。