作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个QTreeWidget
,我想在某个索引处插入一个子项。我尝试过
void QTreeWidgetItem::insertChild ( int index, QTreeWidgetItem * child )
但是我放置的任何索引,都会将子项插入到父项拥有的所有子项的末尾。
最佳答案
我找到了解决方案:
我的第一个代码是这样的
QTreeWidgetItem* newVtxItem = new QTreeWidgetItem(parentItem);
newVtxItem->setText(0, "vtx 1");
newVtxItem->setText(1, "-1");
childOfNameProfile->insertChild(0,newVtxItem);
然后我通过以下方式删除新 QTreeWidgetItem 的parentItem 来纠正它:
QTreeWidgetItem* newVtxItem = new QTreeWidgetItem();
newVtxItem->setText(0, "vtx 1");
newVtxItem->setText(1, "-1");
childOfNameProfile->insertChild(0,newVtxItem);
之所以将子项插入到所有子项之后,是因为当您创建 QTreeWidgetItem 并定义父项时,Qt 将其直接放在父项的子项列表的末尾。所以 insertChild,正如文档所说:
If the child has already been inserted somewhere else it won’t be inserted again.
我希望我能帮助别人。享受 Qt!
关于QTreeWidgetItem::insertChild 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27844221/
我有一个QTreeWidget,我想在某个索引处插入一个子项。我尝试过 void QTreeWidgetItem::insertChild ( int index, QTreeWidgetItem *
我有一个QTreeWidget,我想在某个索引处插入一个子项。我尝试过 void QTreeWidgetItem::insertChild ( int index, QTreeWidgetItem *
本文整理了Java中org.xmlpull.v1.builder.XmlElement.insertChild()方法的一些代码示例,展示了XmlElement.insertChild()的具体用法。
我对 XOM 还很陌生。我想将一个子节点( )插入到节点 中在指定的索引处,但我在 XML 文档中的正确位置得到的是 <stmt > </stmt>这就是我真正追求的
我是一名优秀的程序员,十分优秀!