4

我是 ScalaFX 的新手。我正在尝试调整一个基本的 TableView 示例,以包含整数列。

到目前为止,我已经想出了以下代码:

class Person(firstName_ : String, age_ : Int) {
  val name = new StringProperty(this, "Name", firstName_)
  val age = new IntegerProperty(this, "Age", age_)
}

object model{
  val dataSource = new ObservableBuffer[Person]()
  dataSource += new Person("Moe",   45)
  dataSource += new Person("Larry", 43)
  dataSource += new Person("Curly", 41)
  dataSource += new Person("Shemp", 39)
  dataSource += new Person("Joe",   37)
}

object view{
  val nameCol = new TableColumn[Person, String]{
    text = "Name"
    cellValueFactory = {_.value.name}
  }

  val ageCol = new TableColumn[Person, Int]{
    text = "Age"
    cellValueFactory = {_.value.age}
  }
}

object TestTableView extends JFXApp {
  stage = new PrimaryStage {
    title = "ScalaFx Test"
    width = 800; height = 500
    scene = new Scene {      
      content = new TableView[Person](model.dataSource){
        columns += view.nameCol
        columns += view.ageCol
      }
    }
  }
}

问题是,虽然nameCol效果很好,但ageCol它甚至无法编译。

在该行cellValueFactory = {_.value.age}中,我收到类型不匹配错误。它期待一个ObservableValue[Int,Int]但得到一个IntegerProperty

我正在使用为 Scala 2.10 编译的 ScalaFX 1.0 M2。

4

2 回答 2

6

更改IntegerProperty为 ScalaFX ObjectProperty[Int],简单地说:

val age = ObjectProperty(this, "Age", age_)

其余的可以保持不变。

于 2013-03-19T03:14:16.293 回答
0

所以试试...

TableColumn<Person, String> firstNameCol = new TableColumn<>("First Name");

或表格动作

TableColumn<Person, Boolean> actionCol = new TableColumn<>("Action");
actionCol.setSortable(false);
actionCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Person, Boolean>, ObservableValue<Boolean>>() {
  @Override public ObservableValue<Boolean> call(TableColumn.CellDataFeatures<Person, Boolean> features) {
    return new SimpleBooleanProperty(features.getValue() != null);
  }
});
于 2013-03-18T16:59:30.323 回答