Rectangle { id:rect1 width: parent.width height: parent.height/5 TableView{ id: phoneTable x:parent.width/4.3 y:parent.height/50*3 width: parent.width/1.8 height: parent.height //anchors.fill: parent //focus: true // TableViewColumn 描述表格的每一列 TableViewColumn{role: "name"; title: "平台ID"; width: phoneTable.width/5;} TableViewColumn{role: "cost"; title: "任务状态"; width: phoneTable.width/5;} TableViewColumn{role: "manufacture"; title: "所属分队"; width:phoneTable.width/5;} TableViewColumn{role: "rolemessage"; title: "角色信息"; width:phoneTable.width/5;} TableViewColumn{role: "locolmessage"; title: "位置信息"; width:phoneTable.width/5;} model: ListModel{ id: phoneModel ListElement{ name: "rongyao2"; cost: "4900"; manufacture: "huawei"; rolemessage:"123"; locolmessage:"456" } } // model is end } } 如何去除生成的表格底部的拖动条条
时间: 2024-02-14 22:25:55 浏览: 130
C程序设计教学课件:CHAPTER9POLYMORPHISM.pptx
要去除生成的表格底部的拖动条条,可以在TableView组件中设置属性`clip: true`。这样设置后,表格将会被裁剪到指定的大小,超出部分将不可见,不会显示拖动条。修改后的代码如下:
```qml
TableView{
id: phoneTable
x:parent.width/4.3
y:parent.height/50*3
width: parent.width/1.8
height: parent.height
clip: true // 添加此行代码
// ...
}
```
通过添加`clip: true`属性,即可去除生成的表格底部的拖动条条。
阅读全文