作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我有一个创建插槽,当按下按钮时会调用该插槽。 Slot函数需要从其上方QGridLayout中的ComboBoxes中获取所有数据。在上面的项目中,并非所有人都有QComboBoxes。其中一些是QLineEdit,其他是QLabel。我的QgridLayout称为ui.testgridLayout。
for (int i = 0; i < ui.testgridLayout->rowCount(); i++)
{
for (int j = 0; j < ui.testgridLayout->columnCount(); j++)
{
QLayoutItem *item= ui.testgridLayout->itemAtPosition(i, j);
if (item) {
if (strcmp(item->widget()->metaObject()->className(), "QComboBox")==0) {
QString objName= item->widget()->objectName();
QComboBox* cb =ui.testgridLayout->findChild<QComboBox*>(objName);
string text = cb->currentText().toLocal8Bit().constData();
}
}
}
}
最佳答案
问题是您认为放置在布局中的窗口小部件是布局的子级,但不是,这些窗口小部件是建立布局的窗口小部件的子级,因此在您的代码“cb”中是导致问题的空指针。解决方案是强制转换并验证指针是否有效:
for (int i = 0; i < ui.testgridLayout->rowCount(); i++){
for (int j = 0; j < ui.testgridLayout->columnCount(); j++){
if (QLayoutItem *item= ui.testgridLayout->itemAtPosition(i, j)) {
if (QComboBox* cb = qobject_cast<QComboBox*>(item->widget())) {
string text = cb->currentText().toLocal8Bit().constData();
}
}
}
}
关于c++ - 如何在QGridLayout中获取QComboBox的当前文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60098068/
我是一名优秀的程序员,十分优秀!