本文介绍了左上角和右上角在Javafx / CSS中呈圆角的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在左上角和右上角创建一个带有2个圆角的窗格,我怎样才能在javafx中执行此操作?
我知道你可以在普通的css中使用border-top-left-radius,但它不能在javafx下工作。
到目前为止我尝试过:
I would like to create a Pane with 2 rounded corners top-left and top-right, how can i do this in javafx?I know that u can use "border-top-left-radius" in normal css but it wont work under javafx.Until now I tried:
.calendar {
-fx-border-top-left-radius: 10px;
-fx-border-top-right-radius: 10px;
}
提前致谢,
Zombie
推荐答案
.calendar{
-fx-border-radius: 10 10 0 0;
-fx-background-radius: 10 10 0 0;
/* top-left, top-right, bottom-right, and bottom-left corners, in that order. */
}
这篇关于左上角和右上角在Javafx / CSS中呈圆角的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!