0

我有一个带有两个 TableViewColumns 的 TableView,并希望防止它们被调整大小。我怎样才能做到这一点?

TableView {

   TableViewColumn {
      title: "Name"
      width: parent.width - 20
   }

   TableViewColumn {
      width: 18
      delegate: CheckBox {
   }
}
4

1 回答 1

2
  TableViewColumn {
     title: "Name"
     width: parent.width - 20
     resizable: false
  }
于 2014-11-08T11:25:03.367 回答