是否可以填充wx.grid.Grid中的左上角单元格?

发布于 2024-12-17 20:57:55 字数 41 浏览 0 评论 0原文

该单元格如何(最多行标签,左边到列标签) 可以用文字或者图片填充吗?

How this cell (up to row labels and left to column labels)
can be filled with text or image?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遮云壑 2024-12-24 20:57:55

wxPython 演示中有一个使用 GridLabelRenderer 的示例。以下是演示中的相关代码:

class MyCornerLabelRenderer(glr.GridLabelRenderer):
    def __init__(self):
        import images
        self._bmp = images.Smiles.getBitmap()

    def Draw(self, grid, dc, rect, rc):
        x = rect.left + (rect.width - self._bmp.GetWidth()) / 2
        y = rect.top + (rect.height - self._bmp.GetHeight()) / 2
        dc.DrawBitmap(self._bmp, x, y, True)

然后您可以通过执行以下操作来调用它:

myGrid.SetCornerLabelRenderer(MyCornerLabelRenderer())

There's an example in the wxPython demo that uses the GridLabelRenderer. Here's the relevant code from the demo:

class MyCornerLabelRenderer(glr.GridLabelRenderer):
    def __init__(self):
        import images
        self._bmp = images.Smiles.getBitmap()

    def Draw(self, grid, dc, rect, rc):
        x = rect.left + (rect.width - self._bmp.GetWidth()) / 2
        y = rect.top + (rect.height - self._bmp.GetHeight()) / 2
        dc.DrawBitmap(self._bmp, x, y, True)

Then you call it by doing something like this:

myGrid.SetCornerLabelRenderer(MyCornerLabelRenderer())

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文