10

これについては、インターネットのどこを探しても答えが見つかりません。

折りたたみ可能なパネルが必要なアプリケーションがあるため、Java FX での TitledPane と Accordion のセットアップは自然な候補です。

アプリケーションでは、コンテナーが折りたたまれたときにコンテナーのカスタム ヘッダーが必要です。TitledPane の css ドキュメントを見ると、ヘッダーが実際には HBox とその他のさまざまなコンポーネントであることがわかります。

http://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html#titledpane

このコンポーネントにアクセスして、カスタム コンポーネントに置き換えたいと考えています。

TitledPane API の setGraphic 関数と setContentDisplay を GraphicOnly に使用しています。カスタムコンポーネントで。ただし、正しくレンダリングできません。矢印の削除と、矢印が占めるスペースの削除に問題がありました。

目的の外観のスクリーンショットと実際の外観については、以下のリンクを参照してください。

http://tinypic.com/r/s1pxfn/6

矢印を削除してパディングを削除するにはどうすればよいですか?

4

4 に答える 4

24

TitledPane は Labeled であるため、リスナーまたは展開されたプロパティへのバインディングでグラフィックを設定できます。

背景色などの変更 (:focused 疑似クラスのスタイリングのオーバーライドを含む) は、css を介して行うことができます (例については、jfxrt.jar の caspian.css スタイルシートの TitledPane セクションを参照してください)

TitledPane のサブコンポーネントへのコード ベースのアクセスが必要な場合は、TitledPane がステージに表示されているシーンに追加された後で、ルックアップ関数を使用できます。

adminPane.lookup(".arrow").setVisible(false);

ルックアップを試みる前に、グラフィック/CSS スタイルシート ベースのアプローチを試すことをお勧めします。

Labeled にテキストを表示する必要がない場合は、 display a graphic onlyを設定します。

titledPane.setContentDisplay(ContentDisplay.GRAPHIC_ONLY);

以下は、カスタマイズされたヘッダーのない TitledPane の隣に、カスタマイズされたヘッダーを持つ TitledPane を表示するサンプル コードです。

import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.geometry.Pos;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;

/** http://stackoverflow.com/questions/11765436/how-to-change-header-component-in-titledpane-in-javafx */
public class TitledPaneCustomization extends Application {
  public static void main(String[] args) { launch(args); }

  @Override public void start(Stage primaryStage) {
    TitledPane adminPane = new TitledPane("Administration", 
      VBoxBuilder.create().style("-fx-padding: 10").spacing(10).children(
        ButtonBuilder.create().text("Admin Client").maxWidth(Double.MAX_VALUE).build(),
        ButtonBuilder.create().text("Admin User").maxWidth(Double.MAX_VALUE).build()
      ).build()            
    );
    adminPane.setAnimated(false);
    adminPane.getStyleClass().add("admin");
    Node open   = HBoxBuilder.create().spacing(5).children(
      new Circle(4, 4, 8, Color.FORESTGREEN),
      new Rectangle(50, 16, Color.AQUAMARINE)
    ).build();
    Node closed = HBoxBuilder.create().spacing(5).children(
      new Circle(4, 4, 8, Color.GOLDENROD),
      new Rectangle(50, 16, Color.AQUAMARINE)
    ).build();

    adminPane.graphicProperty().bind(
      Bindings
        .when(adminPane.expandedProperty())
          .then(open)
          .otherwise(closed)
    );
    adminPane.setContentDisplay(ContentDisplay.GRAPHIC_ONLY);

    TitledPane viewPane = new TitledPane("View", 
      VBoxBuilder.create().style("-fx-padding: 10").spacing(10).children(
        ButtonBuilder.create().text("View Client").maxWidth(Double.MAX_VALUE).build(),
        ButtonBuilder.create().text("View User").maxWidth(Double.MAX_VALUE).build()
      ).build()            
    );
    viewPane.setAnimated(false);

    VBox errorPane = VBoxBuilder.create().style("-fx-padding: 10").spacing(10).children(
      new Label("500: Aug 8, 12:15pm"), 
      new Label("404: Aug 7, 3:27am")
    ).build();
    Label nErrors = new Label();
    nErrors.getStyleClass().add("nerrors");
    nErrors.textProperty().bind(Bindings.size(errorPane.getChildren()).asString());

    TitledPane connectivityPane = new TitledPane(
      "",      
      errorPane
    );
    Label connectivityErrorLabel = new Label("CONNECTIVITY ERROR");
    connectivityErrorLabel.getStyleClass().add("connectivityErrorLabel");
    connectivityPane.getStyleClass().add("connectivity");
    connectivityPane.setAnimated(false);
    connectivityPane.setGraphic(
      HBoxBuilder.create().spacing(2).alignment(Pos.CENTER).styleClass("header").children(
        nErrors,    
        new ImageView(
          new Image(
            "http://openiconlibrary.sourceforge.net/gallery2/open_icon_library-full/icons/png/48x48/actions/network-disconnect-2.png",
            0, 24, true, true
          )
        ),
        connectivityErrorLabel
      ).build()
    );

    HBox layout = new HBox(10);
    layout.setStyle("-fx-padding: 10; -fx-background-color: cornsilk;");
    layout.getChildren().addAll(adminPane, viewPane, connectivityPane);
    layout.setPrefHeight(150);
    layout.getStylesheets().add(this.getClass().getResource("titledpanecustomization.css").toExternalForm());
    primaryStage.setScene(new Scene(layout));
    primaryStage.show();

    Node arrow = adminPane.lookup(".arrow");
    arrow.setVisible(false);
    arrow.setManaged(false);

    // translate the titledpane arrow and header so that the arrow is displayed to right of the header.
    Pane connectivityArrow = (Pane) connectivityPane.lookup(".arrow");
    connectivityArrow.translateXProperty().bind(
      connectivityPane.widthProperty().subtract(connectivityArrow.widthProperty().multiply(2))
    );
    Pane connectivityTitle = (Pane) connectivityPane.lookup(".header");
    connectivityTitle.translateXProperty().bind(
      connectivityArrow.widthProperty().negate()
    );
  }
}

それに付随するいくつかのcss:

/** titledpanecustomization.css place in same build directory as TitledPaneCustomization.java 
    and ensure build system copies it to the output classpath. */
.admin .titled-pane > .title {
  -fx-background-color: blue, yellow, linear-gradient(to bottom, derive(coral, +50%), coral);
}

.connectivity {
  -fx-text-fill: white;
}

.nerrors {
  -fx-background-color: derive(-fx-focus-color, -15%);
  -fx-padding: 5 8 5 8;
  -fx-text-fill: white;
}

.connectivityErrorLabel {
  -fx-text-fill: white;
  -fx-padding: 0 40 0 3; 
}

.connectivity .titled-pane > .title {
  -fx-background-color: -fx-box-border, -fx-inner-border, -fx-body-color;
  -fx-background-insets: 0, 1, 2;
  -fx-background-radius: 0 0 0 0, 0 0 0 0, 0 0 0 0;
  -fx-padding: 0.166667em 1.166667em 0.25em 0; /* 2 14 3 0 */
  -fx-color: -fx-focus-color;
}

.connectivity .titled-pane > .title > .arrow-button .arrow {
  -fx-background-color: white;
}

カスタマイズされた TitledPane のサンプル

于 2012-08-01T20:02:37.907 に答える
3

(質問から回答を移動)

これが答えです:

矢印を削除するには、次の CSS 宣言を追加します。

.titled-pane > .title > .arrow-button .arrow{
    -fx-shape: "";
}

上記の CSS スニペットは矢印を削除しますが、矢印のスペースはまだ占有されています。これは非常にトリッキーで、インターネット上のどこにも文書化されていませんでしたが、この CSS ステートメントを適用すると、矢印からギャップがなくなりました。

.titled-pane > .title{
   -fx-padding: 0 0 0 -4;
}

これは最善の解決策ではないかもしれませんが、私のニーズには合った解決策です。

于 2016-04-14T06:11:42.043 に答える
-1

これは、矢印を削除する方法です。

.titled-pane > .title > .arrow-button > .arrow{
    -fx-shape: null;
}
于 2014-07-24T12:35:34.273 に答える