如何在JavaFX中使用图标创建选项卡

时间:2013-06-10 07:11:09

标签: java javafx-2 javafx javafx-8

我想使用JavaFX创建带有类似于Firefox配置面板的图标的标签面板:

enter image description here

有没有可以用来看看如何实现这个的例子?

3 个答案:

答案 0 :(得分:15)

与JavaFX中的许多其他元素一样,Tabs有一个名为setGraphic(Node value)的方法,您可以在其中放置任何JavaFX节点。例如:

import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;

public class TabPaneTest extends Application {
  public static void main(String[] args) {
    Application.launch(args);
  }
  @Override
  public void start(Stage primaryStage) {
    primaryStage.setTitle("Tabs");
    Group root = new Group();
    Scene scene = new Scene(root, 400, 250, Color.WHITE);
    TabPane tabPane = new TabPane();
    BorderPane borderPane = new BorderPane();
    for (int i = 0; i < 5; i++) {
      Tab tab = new Tab();
      tab.setGraphic(new Circle(0, 0, 10));
      HBox hbox = new HBox();
      hbox.getChildren().add(new Label("Tab" + i));
      hbox.setAlignment(Pos.CENTER);
      tab.setContent(hbox);
      tabPane.getTabs().add(tab);
    }
    // bind to take available space
    borderPane.prefHeightProperty().bind(scene.heightProperty());
    borderPane.prefWidthProperty().bind(scene.widthProperty());

    borderPane.setCenter(tabPane);
    root.getChildren().add(borderPane);
    primaryStage.setScene(scene);
    primaryStage.show();
  }
}

结果:

tabs in a TabPane

答案 1 :(得分:4)

我知道它是一个旧线程,但我没有在任何地方找到直接答案。所以我想把它发布一些对搜索它有用的东西。

这就是我为获取firefox首选项屏幕这样的标签所做的工作。

使用setGraphics将图像添加到选项卡,并将以下代码添加到应用程序css文件中。我的图片尺寸为48x48。所以我去了70岁。

.tab-label {
    -fx-content-display: top;
}
.tab-pane {
    -fx-tab-min-height: 70;
    -fx-tab-max-height: 70;
}

答案 2 :(得分:0)

如何直接从图片网址添加图片:

          Tab tab = new Tab();
          tab.setGraphic(buildImage("patch/to/image");

    // Helper method to create image from image patch
    private static ImageView buildImage(String imgPatch) {
            Image i = new Image(imgPatch);
            ImageView imageView = new ImageView();
            //You can set width and height
            imageView.setFitHeight(16);
            imageView.setFitWidth(16);
            imageView.setImage(i);
            return imageView;
        }