如何在 wxgrid (python) 中放置组合框?
我找不到任何关于如何将组合框放置在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 GridChoiceCellEditor。您可以按如下方式使用它:
Take a look at GridChoiceCellEditor. You can use it as follows:
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