如何使用 JavaFX 创建分隔符?
分隔符是应用程序中的一个水平或垂直线,用于分隔 UI 元素。
在 JavaFX 中,javafx.scene.control.Separator 类表示一个分隔符,要创建一个分隔符,你需实例化此类。此类有以下三个属性:-
halignment − 此属性指定垂直分隔符的水平对齐方式。你可使用 setHalignment() 方法为其设置值
orientation − 此属性指定当前分隔符的方向,即水平或垂直。可使用 setOrientation() 方法为其设置值。
valignment − 此属性指定水平分隔符的垂直对齐方式。可使用 setValignment() 方法为其设置值
默认情况下,分隔符类创建一个水平分隔符,若要创建垂直分隔符,需要使用 setOrientation() 方法更改其方向。
示例
import javafx.application.Application; import javafx.geometry.HPos; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.CheckBox; import javafx.scene.control.Label; import javafx.scene.control.Separator; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.scene.text.Font; import javafx.scene.text.FontPosture; import javafx.scene.text.FontWeight; import javafx.stage.Stage; public class SeparatorExample extends Application { public void start(Stage stage) { //Creating the check boxes CheckBox checkBox1 = new CheckBox("Hindi"); CheckBox checkBox2 = new CheckBox("Gujarathi"); CheckBox checkBox3 = new CheckBox("Punjabi"); CheckBox checkBox4 = new CheckBox("Telugu"); CheckBox checkBox5 = new CheckBox("Tamil"); CheckBox checkBox6= new CheckBox("Malayalam"); //Creating a label Label label = new Label("Select known languages:"); Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 12); label.setFont(font); //Creating a separator Separator sep = new Separator(); sep.setMaxWidth(80); sep.setHalignment(HPos.CENTER); //Adding the check boxes and separator to the pane VBox vBox = new VBox(5); vBox.setPadding(new Insets(5, 5, 5, 50)); vBox.getChildren().addAll(label, checkBox1, checkBox2, checkBox3, checkBox4, checkBox5, checkBox6); //Adding the separator after the 3rd check box vBox.getChildren().add(4, sep); //Setting the stage Scene scene = new Scene(vBox, 595, 200, Color.BEIGE); stage.setTitle("Seperator Example"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
输出
广告