我想用页眉和页脚打印tableview,但我没有在javafx中找到任何代码来打印带有页眉和页脚的表格,所以如果有人知道如何打印表格,那么请帮助我。
谢谢。
答案 0 :(得分:0)
分别使用表格为中心元素的BorderPane和页眉和页脚元素作为顶部和底部元素。
超级简单的示例应用程序:
package application;
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.scene.control.Label;
import javafx.scene.control.TableView;
public class Main extends Application {
@Override
public void start(Stage primaryStage) {
TableView table = new TableView();
//Do stuff with your table...
BorderPane root = new BorderPane();
root.setTop(new Label("Awesome header text.")); //Set header
root.setCenter(table); //add your table
root.setBottom(new Label("Even more awesome footer text.")); //Set footer
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
如果您真的想在一张纸上打印,请按照link already provided by ItachiUchiha。