是否可以填充wx.grid.Grid中的左上角单元格?
该单元格如何(最多行标签,左边到列标签) 可以用文字或者图片填充吗?
How this cell (up to row labels and left to column labels)
can be filled with text or image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wxPython 演示中有一个使用 GridLabelRenderer 的示例。以下是演示中的相关代码:
然后您可以通过执行以下操作来调用它:
myGrid.SetCornerLabelRenderer(MyCornerLabelRenderer())
There's an example in the wxPython demo that uses the GridLabelRenderer. Here's the relevant code from the demo:
Then you call it by doing something like this:
myGrid.SetCornerLabelRenderer(MyCornerLabelRenderer())