QComboBox - 根据项目的数据设置所选项目
从基于 enum
的唯一值的预定义列表中选择 QT 组合框中的项目的最佳方法是什么。
在过去,我已经习惯了 .NET 的选择风格,可以通过将 selected 属性设置为您想要选择的项目的值来选择项目:
cboExample.SelectedValue = 2;
是否有办法根据项目的数据使用 QT 来执行此操作,如果数据是C++枚举吗?
What would be the best way of selecting an item in a QT combo box out of a predefined list of enum
based unique values.
In the past I have become accustomed to .NET's style of selection where the item can be selected by setting the selected property to the item's value you wish to select:
cboExample.SelectedValue = 2;
Is there anyway to do this with QT based on the item's data, if the data is a C++ enumeration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您使用
findData()
查找数据值,然后使用setCurrentIndex()
You lookup the value of the data with
findData()
and then usesetCurrentIndex()
您还可以查看 QComboBox 中的 findText(const QString & text) 方法;它返回包含给定文本的元素的索引(如果未找到则为 -1)。
使用这种方法的好处是,添加项目时不需要设置第二个参数。
这是一个小例子:
You can also have a look at the method findText(const QString & text) from QComboBox; it returns the index of the element which contains the given text, (-1 if not found).
The advantage of using this method is that you don't need to set the second parameter when you add an item.
Here is a little example :
如果您知道组合框中要选择的文本,只需使用 setCurrentText() 方法来选择该项目。
来自 Qt 5.7 文档
因此,只要组合框不可编辑,函数调用中指定的文本就会在组合框中被选中。
参考: http://doc.qt.io/qt-5/qcombobox .html#currentText-prop
If you know the text in the combo box that you want to select, just use the setCurrentText() method to select that item.
From the Qt 5.7 documentation
So as long as the combo box is not editable, the text specified in the function call will be selected in the combo box.
Reference: http://doc.qt.io/qt-5/qcombobox.html#currentText-prop