java在表格单元中加入button按钮_向TableView中的单元添加按钮(JAVAFX)

这篇博客展示了如何在JavaFX的TableView中创建一个包含编辑按钮的表格。通过自定义TableCell,实现了当点击“Edit”按钮时,弹出一个对话框,允许用户编辑表格单元格中Person对象的firstName、lastName和email属性。
摘要由CSDN通过智能技术生成

import java.util.function.Function;

import javafx.application.Application;

import javafx.beans.property.ReadOnlyObjectWrapper;

import javafx.beans.property.SimpleStringProperty;

import javafx.beans.property.StringProperty;

import javafx.beans.value.ObservableValue;

import javafx.geometry.HPos;

import javafx.geometry.Insets;

import javafx.scene.Scene;

import javafx.scene.control.Button;

import javafx.scene.control.Label;

import javafx.scene.control.TableCell;

import javafx.scene.control.TableColumn;

import javafx.scene.control.TableView;

import javafx.scene.control.TextField;

import javafx.scene.layout.BorderPane;

import javafx.scene.layout.ColumnConstraints;

import javafx.scene.layout.GridPane;

import javafx.scene.layout.Priority;

import javafx.stage.Modality;

import javafx.stage.Stage;

import javafx.stage.StageStyle;

public class TableViewWithEditButton extends Application {

@Override

public void start(Stage primaryStage) {

TableView table = new TableView<>();

table.getColumns().add(column("First Name", Person::firstNameProperty, 150));

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值