0
我想創建一個窗格,向用戶顯示類似於here(帶有X解除按鈕的那個)的典型引導警報樣式的警報。如何使用JavaFX創建「引導」式警報
到目前爲止,我已經嘗試過使用一個gridpane,並且它不是太糟糕。但是我對結果並不滿意,特別是當我添加更多文本時。
<GridPane minHeight="40" maxHeight = "40">
<VBox fx:id="MessageVbox" alignment="BASELINE_LEFT" GridPane.columnIndex="0" GridPane.rowIndex="0">
<Label fx:id="Message" text="Alert Message" />
<padding>
<Insets bottom="5.0" left="10.0" right="10.0" top="10.0" />
</padding>
</VBox>
<Button fx:id="Dismiss" alignment="TOP_RIGHT" onAction="#handleDismiss" text="X" GridPane.columnIndex="1" GridPane.rowIndex="0" />
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0"
percentWidth="90.0" prefWidth="100.0" />
<ColumnConstraints halignment="RIGHT" hgrow="SOMETIMES"
minWidth="10.0" percentWidth="10.0" prefWidth="100.0" />
</columnConstraints>
</GridPane>
這可能是對你有所幫助:http://stackoverflow.com/questions/21268062/bootstrap-with-javafx –