如何为tableView行定义setOnAction?

时间:2019-06-07 14:10:23

标签: java javafx tableview

我正在编写具有javafx和tableView功能的程序。

我的目的是当我单击该表的一行时,另一个窗口打开并显示一些内容,但是我不知道如何为我的表定义诸如setOnMouseClicked功能。

我搜索了很多,但找不到简单的方法

这是我现有的定义表列和行的代码。(行是通过可观察的功能定义的)

package sample;

import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class Main extends Application {

public static void main(String[] args) {
    launch(args);
}

@Override
public void start(Stage primaryStage) {

    TableView tableView = new TableView();

    TableColumn<String, Account> column1 = new TableColumn<>("UserName");
    column1.setCellValueFactory(new PropertyValueFactory<>("userName"));
    column1.setMinWidth(100);

    TableColumn<String, Account> column2 = new TableColumn<>("PassWord");
    column2.setCellValueFactory(new PropertyValueFactory<>("passWord"));
    column2.setMinWidth(100);


    tableView.getColumns().add(column1);
    tableView.getColumns().add(column2);
    tableView.setItems(getAllAccounts());



    VBox vbox = new VBox(tableView);

    Scene scene = new Scene(vbox,200,200);
    Stage window ;

    window = primaryStage;

    window.setScene(scene);
    window.show();
}
private ObservableList<Account> getAllAccounts(){
ObservableList<Account> accounts= FXCollections.observableArrayList(Account.getAccounts());
return accounts;

}


}

1 个答案:

答案 0 :(得分:1)

您实际上有两个选择:

  

方法1:

TableView上实现点击侦听器,并检索所选的项目。

// Listen for a mouse click and access the selectedItem property
tblAccounts.setOnMouseClicked(event -> {
    // Make sure the user clicked on a populated item
    if (tblAccounts.getSelectionModel().getSelectedItem() != null) {
        System.out.println("You clicked on " + tblAccounts.getSelectionModel().getSelectedItem().getUsername());
    }
});
  

方法2:

RowFactory创建自己的TableView并在那里处理您的逻辑。 (我更喜欢这种方法)

// Create a new RowFactory to handle actions
tblAccounts.setRowFactory(tv -> {

    // Define our new TableRow
    TableRow<Account> row = new TableRow<>();
    row.setOnMouseClicked(event -> {
        System.out.println("Do your stuff here!");
    });
    return row;
});

方法1是最简单的方法,可以满足大多数需求。您将需要使用方法2来满足更复杂的需求,例如设置单个行的样式或处理对空行的点击。