GroupBox または TitledBorder のようなものがJavaFX 2で利用可能ですか?
ヒントをありがとう:-)
そのような標準コントロールはありませんが、独自のコントロールを簡単に作成できます。以下に実装例を示します。
/** Places content in a bordered pane with a title. */
class BorderedTitledPane extends StackPane {
BorderedTitledPane(String titleString, Node content) {
Label title = new Label(" " + titleString + " ");
title.getStyleClass().add("bordered-titled-title");
StackPane.setAlignment(title, Pos.TOP_CENTER);
StackPane contentPane = new StackPane();
content.getStyleClass().add("bordered-titled-content");
contentPane.getChildren().add(content);
getStyleClass().add("bordered-titled-border");
getChildren().addAll(title, contentPane);
}
}
そして、それに付随するCSS:
.label {
-fx-font: 28px Vivaldi;
}
.bordered-titled-title {
-fx-background-color: white;
-fx-translate-y: -16;
}
.bordered-titled-border {
-fx-content-display: top;
-fx-border-insets: 20 15 15 15;
-fx-background-color: white;
-fx-border-color: black;
-fx-border-width: 2;
}
.bordered-titled-content {
-fx-padding: 26 10 10 10;
}
コードは 例 からのものです。OracleJavaFXフォーラムのスレッド投稿への応答で作成しました "Equivalent to BorderFactory.createTitledBorder" 。
サンプルプログラムの出力は次のとおりです。
Jewelseaの回答のFXMLバージョン:
TitledBorder(BorderedTitledPaneの名前をTitledBorderに変更しました)
package com.example.controls;
import javafx.geometry.Pos;
import javafx.scene.Node;
import javafx.scene.control.Label;
import javafx.scene.layout.StackPane;
public class TitledBorder extends StackPane
{
private Label titleLabel = new Label();
private StackPane contentPane = new StackPane();
private Node content;
public void setContent(Node content)
{
content.getStyleClass().add("bordered-titled-content");
contentPane.getChildren().add(content);
}
public Node getContent()
{
return content;
}
public void setTitle(String title)
{
titleLabel.setText(" " + title + " ");
}
public String getTitle()
{
return titleLabel.getText();
}
public TitledBorder()
{
titleLabel.setText("default title");
titleLabel.getStyleClass().add("bordered-titled-title");
StackPane.setAlignment(titleLabel, Pos.TOP_CENTER);
getStyleClass().add("bordered-titled-border");
getChildren().addAll(titleLabel, contentPane);
}
}
FXMLの使用法:
<?import com.example.controls.*?>
<TitledBorder title="title" >
<Label text="label with text" />
</TitledBorder>
スタイルシートを忘れないでください!
通常のフォントにはこのCSSを使用:
.bordered-titled-title {
-fx-background-color: white;
-fx-translate-y: -10; /* play around with this value when changing the title font to get a vertically centered title */
}
.bordered-titled-border {
-fx-content-display: top;
-fx-border-insets: 20 15 15 15;
-fx-background-color: white;
-fx-border-color: black;
-fx-border-width: 2;
}
.bordered-titled-content {
-fx-padding: 26 10 10 10;
}
このCSSを使用すると、次のようになります。
更新:タイトルがコンテンツよりも長い場合の問題:
この問題を解決するためのヒントはありますか?
同様の機能を持つSceneBuilderにロードできるFXMLドキュメントを次に示します。
<?xml version="1.0" encoding="UTF-8"?>
<?import Java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane style="-fx-border-insets: 8 0 0 0; -fx-background-color: #FFFFFF; -fx-border-color: black;">
<children>
<Label alignment="TOP_LEFT" layoutX="14.0" style="-fx-padding: 0 5; -fx-background-color: inherit;" text="Title" />
<AnchorPane prefHeight="200.0" prefWidth="200.0" AnchorPane.bottomAnchor="1.0" AnchorPane.leftAnchor="1.0" AnchorPane.rightAnchor="1.0" AnchorPane.topAnchor="10.0" />
</children>
</AnchorPane>
ラベルテキスト/境界サイズを大きくする必要がある場合は、CSSと、子AnchorPaneのtopAnchorと、親AnchorPaneの-fx-border-insetsの最初の引数のみを編集する必要があります。
GroupBox-私が見る限り、それは通常のグループレイアウトです。
TitledBorder-TitledPaneのように見えます(これは通常、Accordionのコンポーネントですが、個別に存在するコントロールである可能性があります)。
JavaFX-2の類似物はあなたのものとは異なります(ただし、大きくはありません)。通常どおり、CSS、コントロールのスキン交換など、外観を変更するさまざまな方法を使用できます。
以下は、TitledPaneに基づいたGroupBoxの実装です。 GroupBoxのタイトル、コンテンツ、コンテンツパディングを設定する3つのメソッドを提供します。
public final class GroupBox extends Parent {
private StackPane _stackPane;
private TitledPane _titledPane;
public GroupBox() {
_stackPane = new StackPane();
_titledPane = new TitledPane();
setContentPadding(new Insets(10));
_titledPane.setCollapsible(false);
_titledPane.setContent(_stackPane);
super.getChildren().add(_titledPane);
}
public GroupBox(String title, Node content) {
this();
setText(title);
setContent(content);
}
public GroupBox(String title, Node content, Insets contentPadding) {
this(title, content);
setContentPadding(contentPadding);
}
public void setText(String value) {
_titledPane.setText(value);
}
public void setContent(Node node) {
_stackPane.getChildren().add(node);
}
public void setContentPadding(Insets value) {
_stackPane.setPadding(value);
}
}