gpt4 book ai didi

javafx - 无法填充在 SceneBuilder 2 中创建的 JavaFX TableView

转载 作者:行者123 更新时间:2023-12-02 05:03:07 32 4
gpt4 key购买 nike

我正在尝试重新创建 table view sample使用场景生成器 2,但无法填充我的 TableView。

我在 JavaFx SceneBuilder 中定义了我的表,如下所示:

<?xml version="1.0" encoding="UTF-8"?>

<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>

<AnchorPane id="AnchorPane" prefHeight="380.0" prefWidth="462.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8" fx:controller="tableviewsample.FXMLDocumentController">
<children>
<Button fx:id="button" layoutX="325.0" layoutY="324.0" onAction="#handleButtonAction" text="Click Me!" />
<Label fx:id="label" layoutX="126" layoutY="120" minHeight="16" minWidth="69" />
<TableView fx:id="table" layoutX="26.0" layoutY="29.0" prefHeight="221.0" prefWidth="411.0">
<columns>
<TableColumn fx:id="firstNameCol" prefWidth="75.0" text="First Name" />
<TableColumn fx:id="lastNameCol" prefWidth="75.0" text="Last Name" />
<TableColumn fx:id="emailCol" prefWidth="75.0" text="Email" />
</columns>
</TableView>
<TextField fx:id="addFirstName" layoutX="26.0" layoutY="284.0" prefHeight="25.0" prefWidth="81.0" promptText="First Name" />
<TextField fx:id="addLastName" layoutX="121.0" layoutY="284.0" prefHeight="25.0" prefWidth="89.0" promptText="Last Name" />
<TextField fx:id="addEmail" layoutX="222.0" layoutY="284.0" promptText="Email" />
</children>
</AnchorPane>

我的 Controller 代码:

package tableviewsample;

import java.net.URL;
import java.util.ResourceBundle;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;

public class FXMLDocumentController implements Initializable {

@FXML
private Label label;

@FXML
private TableView<Person> table;// = new TableView<Person>();

@FXML private TableColumn firstNameCol ;
@FXML private TableColumn lastNameCol ;
@FXML private TableColumn emailCol ;

@FXML TextField addFirstName;
@FXML TextField addLastName;
@FXML TextField addEmail;

private final ObservableList<Person> data
= FXCollections.observableArrayList(
new Person("Jacob", "Smith", "jacob.smith@example.com"),
new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
new Person("Ethan", "Williams", "ethan.williams@example.com"),
new Person("Emma", "Jones", "emma.jones@example.com"),
new Person("Michael", "Brown", "michael.brown@example.com")
);

@FXML
private void handleButtonAction(ActionEvent event) {
System.out.println("You clicked me!");
data.add(new Person(
addFirstName.getText(),
addLastName.getText(),
addEmail.getText()));
addFirstName.clear();
addLastName.clear();
addEmail.clear();
}

@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
firstNameCol.setMinWidth(100);
lastNameCol.setMinWidth(100);
emailCol.setMinWidth(200);
table.getItems().setAll(this.data);
}

public static class Person {

private final SimpleStringProperty firstName;
private final SimpleStringProperty lastName;
private final SimpleStringProperty email;

private Person(String fName, String lName, String email) {
this.firstName = new SimpleStringProperty(fName);
this.lastName = new SimpleStringProperty(lName);
this.email = new SimpleStringProperty(email);
}

public String getFirstName() {
return firstName.get();
}

public void setFirstName(String fName) {
firstName.set(fName);
}

public String getLastName() {
return lastName.get();
}

public void setLastName(String fName) {
lastName.set(fName);
}

public String getEmail() {
return email.get();
}

public void setEmail(String fName) {
email.set(fName);
}
}
}

主要代码:

package tableviewsample;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class TableViewSample extends Application {

@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}

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

屏幕截图:

screenshot

当我运行它时,表中有空行。如果我在 3 个文本字段中输入一些值并单击按钮,这些值仍然不会插入到表中。您能找出代码有什么问题吗?另外,在一个不相关的注释中,如何使表格可滚动?

最佳答案

您尚未在 TableColumn 上设置任何 cellValueFactory(tutorial you linked 中的示例 12-5)。

您可以在 FXML 中使用

执行此操作
<TableColumn fx:id="firstNameCol" prefWidth="75.0" text="First Name" >
<cellValueFactory><PropertyValueFactory property="firstName"/></cellValueFactory>
</TableColumn>

或者在 Controller 中使用

firstNameCol.setCellValueFactory(new PropertyValueFactory("firstName"));

(其他列也类似)

关于javafx - 无法填充在 SceneBuilder 2 中创建的 JavaFX TableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27806367/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com