如何在应用程序启动时将QML表视图列的大小调整为其内容?



我在Ubuntu 18.04上使用Qt 5.9.4。

当我的应用程序启动时,我想根据其内容自动调整TableView的列大小。模型在启动时有一些数据。

我知道resizeColumnToContents函数,但我不知道在哪里称呼它。

onDataChangeTableView中不起作用:QML引擎说这个信号不存在。但是智能型允许我在代码中键入它。

如何做到这一点?

编辑 18/09/18

如果您使用 StackView,否则您可以预加载您的 TableView

// main.qml
Loader {
id: tableViewLoader
active: true
sourceComponent: TableView { id: tableView }
}
StackView {
id: stackView
initialItem: listViewLoader
function onContentReceived()
{
stackView.push(tableViewLoader);
tableViewLoader.item.resizeColumnsToContents()
}
function onContentClosed()
{
swipeView.pop()
}
}

编辑17/09/18

你是对的丹尼尔。

在 TableView.qml 中指定

Depending on how the model is populated, the model may not be ready when
TableView Component.onCompleted is called. In that case you may need to
delay the call to positionViewAtRow by using a l {QtQml::Timer}{Timer}

对我来说这是有效的

Component.onCompleted: resizeColumnsToContentsTimer.start()
Timer {
id: resizeColumnsToContentsTimer
interval: 50
running: false
repeat: false
onTriggered: parent.resizeColumnsToContents()
}

你也可以看到这个关于它的讨论

http://lists.qt-project.org/pipermail/interest/2016-June/023018.html


也许,您可以在 onModelChanged 中调用它,当您设置模型时调用它(您的模型必须在之前填充(。

onModelChanged: tableView.resizeColumnToContents()

否则,您可以在数据准备就绪时使用信号/插槽。

但是要注意这个函数:如果你有委托,你必须指定隐式宽度,否则这将不起作用。

headerDelegate: Rectangle {
id: headerDelegate
height: 36
implicitWidth: textItem.implicitWidth + textItem.padding * 2
color: Style.lightColor
Text {
id: textItem
anchors.fill: parent
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignLeft
padding: 10
text: styleData.value
elide: Text.ElideRight
color: Style.darkColor
font.pixelSize: Style.bigFontPixelSize
}
}

相关内容

  • 没有找到相关文章

最新更新