以下申请:
public class Temp extends Application {
@Override
public void start(Stage primaryStage) {
StackPane root = new StackPane();
Rectangle rect = new Rectangle(10.0,10.0);
rect.setStyle("-fx-fill: red; -fx-border-style: solid; -fx-border-width: 5; -fx-border-color: black;");
root.getChildren().add(rect);
Scene scene = new Scene(root, 100, 100);
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
生成以下窗口:
为什么我的矩形没有粗黑边框?
答案 0 :(得分:4)
否:Rectangle
不支持-fx-border
等:只有Region
和子类。
所以试试
public class Temp extends Application {
@Override
public void start(Stage primaryStage) {
StackPane root = new StackPane();
Region rect = new Region();
rect.setStyle("-fx-background-color: red; -fx-border-style: solid; -fx-border-width: 5; -fx-border-color: black; -fx-min-width: 20; -fx-min-height:20; -fx-max-width:20; -fx-max-height: 20;");
root.getChildren().add(rect);
Scene scene = new Scene(root, 100, 100);
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
或者,您可以使用"嵌套背景":
来实现边框 rect.setStyle("-fx-background-color: black, red; -fx-background-insets: 0, 5; -fx-min-width: 20; -fx-min-height:20; -fx-max-width:20; -fx-max-height: 20;");
您只能使用
为某些边添加边框 rect.setStyle("-fx-background-color: black, red; -fx-background-insets: 0, 5 5 0 0; -fx-min-width: 20; -fx-min-height:20; -fx-max-width:20; -fx-max-height: 20;");
答案 1 :(得分:3)
请尝试使用此样式:
rect.setStyle("-fx-fill: red; -fx-stroke: black; -fx-stroke-width: 5;");
这就是JavaFX CSS Reference Guide的第一部分。