如何在 wxGrid 中禁用多重选择?
我只想选择 wxGrid 中的一行。 是否可以在 wxGrid 中禁用多重选择? 我尝试了 SetSelectionMode
,它可以帮助我仅选择行。但我不能将它用于单行选择。
I want to select only one row in wxGrid.
Is is possible to disable multiselection in a wxGrid?
I tried SetSelectionMode
, it helps me to select only rows. But I cannot use it for single row selection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
捕获 wxEVT_GRID_SELECT_CELL 事件。
使用 GetSelectedRows() 获取选定行的数组。
如果选择了多行 -
Capture the wxEVT_GRID_SELECT_CELL event.
Use GetSelectedRows() to obtain an array of selected rows.
If there are more than one row selected -
我发现这个问题很老了,但互联网上没有太多关于这个论点的内容。
互联网上发布的许多解决方案尚未完成或存在一些怪癖。
这是我的解决方案。我有一个继承 wxGrid 的类,具有以下方法
这是我在 wxWidgets 上最接近的单行选择。
I've seen that this question is quite old but there not so much on this argument in internet.
Many of the solution posted on internet are not completed or with some quirks.
Here's my solution. I've a class that inherit wxGrid, with the following methods
This is the closest i've been to have a single row selection on wxWidgets.