如何使用 JavaFX 中的 CSS 为分隔器设置样式?
分隔器是水平或垂直分割应用程序中的 UI 元素的线条。在 JavaFX 中,javafx.scene.control.Separator 类表示一个分隔器,要创建分隔器,您需要实例化此类。您可以使用 CSS 控制分隔器的视觉外观。
通过创建一个 CSS 文件并在应用程序中启用它,您可以为分隔器创建一个替代样式。完成后,创建的样式将应用到应用程序中的所有分隔器上。
setStyle() 方法接受字符串格式的 CSS,并将指定样式应用于分隔器。使用此方法,您可以增强分隔器的可视化效果,如下所示 −
//Setting style for the separator using CSS sep.setStyle("-fx-border-color:#D2691E; -fx-border-width:2");
示例
import javafx.application.Application; import javafx.geometry.HPos; import javafx.geometry.Insets; import javafx.geometry.Orientation; import javafx.scene.Scene; import javafx.scene.control.CheckBox; import javafx.scene.control.Label; import javafx.scene.control.Separator; import javafx.scene.layout.HBox; 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 StylingSeparator extends Application { public void start(Stage stage) { //Creating the check boxes CheckBox checkBox1 = new CheckBox("Java"); CheckBox checkBox2 = new CheckBox("Python"); CheckBox checkBox3 = new CheckBox("C++"); CheckBox checkBox4 = new CheckBox("MongoDB"); CheckBox checkBox5 = new CheckBox("Neo4J"); CheckBox checkBox6= new CheckBox("Casandra"); //Creating the label Label label = new Label("Select Technologies:"); Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 12); label.setFont(font); //Creating a separator Separator sep = new Separator(); sep.setOrientation(Orientation.VERTICAL); sep.setMaxHeight(75); sep.setHalignment(HPos.CENTER); //Setting style for the separator using CSS sep.setStyle("-fx-border-color:#D2691E; -fx-border-width: 2;"); //Adding the check boxes and separator to the pane VBox box1 = new VBox(5); box1.setPadding(new Insets(5, 5, 5, 50)); box1.getChildren().addAll(checkBox1, checkBox2, checkBox3); VBox box2 = new VBox(5); box2.setPadding(new Insets(5, 5, 5, 10)); box2.getChildren().addAll(checkBox4, checkBox5, checkBox6); HBox root = new HBox(box1, box2); root.getChildren().add(1,sep); //Setting the stage Scene scene = new Scene(root, 595, 130, Color.BEIGE); stage.setTitle("Separator Example"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
输出
广告