如何在 wxgrid (python) 中放置组合框?

发布于 2024-12-03 13:56:35 字数 71 浏览 1 评论 0原文

我找不到任何关于如何将组合框放置在 wxgrid 单元格内的好信息。我试过谷歌,但也许我是瞎子。有人有一个简单的示例可以分享吗?

I can't find any good information on how to place a combobox inside a cell in a wxgrid. I tried Google, but maybe I'm blind. Anyone have a simple sample to share?

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

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

发布评论

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

评论(2

烟雨凡馨 2024-12-10 13:56:35

查看 GridChoiceCellEditor。您可以按如下方式使用它:

    choice_editor = wx.grid.GridCellChoiceEditor(choices_list, True) 
    grid.SetCellEditor(row, col, choice_editor)

Take a look at GridChoiceCellEditor. You can use it as follows:

    choice_editor = wx.grid.GridCellChoiceEditor(choices_list, True) 
    grid.SetCellEditor(row, col, choice_editor)
新雨望断虹 2024-12-10 13:56:35

wxPython 演示有一个示例,展示了如何在 GridStdEdRend.py 文件本身或演示本身中完成此操作,请参阅网格演示的“编辑器和渲染器演示”部分。您正在寻找的是 GridCellChoiceEditor。另请参阅:http://wiki.wxpython.org/GridCellChoiceEditor

The wxPython demo has an example that shows how this is done in the GridStdEdRend.py file itself or from within the demo itself, see the "Editors and Renderers Demo" part of the grid demo. What you're looking for is the GridCellChoiceEditor. See also: http://wiki.wxpython.org/GridCellChoiceEditor

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