TableView问题

时间:2018-12-08 20:55:31

标签: javafx

我正在javafx的表视图中添加数据。我还在设置表列,如图所示,它们工作正常。关于我错在哪里的任何评论?

c1 = new TableColumn<String, String>("First Name"); //c1 is column 
c1.setCellValueFactory(new PropertyValueFactory<String,String>("Name"));  
table.setItems(value); //table is tableview                          
table.getItems().add("My name");                         
table.getColumns().addAll(c1);
count++;

0 个答案:

没有答案