qml tableview关闭水平滑动
时间: 2023-08-18 16:08:17 浏览: 270
qml tableview 表格
要关闭QML TableView的水平滑动,可以通过设置TableView的属性horizontalScrollEnabled为false来实现。在给TableView添加属性的地方,添加horizontalScrollEnabled: false即可。例如,在给TableView添加属性的代码块中添加该属性,如下所示:
TableView {
id: phoneTable
anchors.fill: parent
focus: true
horizontalScrollEnabled: false
// 其他属性...
}
这样设置后,TableView将不再支持水平滑动。
#### 引用[.reference_title]
- *1* *3* [QML TableView 使用详解](https://blog.csdn.net/u013873761/article/details/125064741)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [qml tableview](https://blog.csdn.net/Wite_Chen/article/details/126147331)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文