21

我想创建一个左上角和右上角有 2 个圆角的窗格,我该如何在 javafx 中做到这一点?我知道你可以在普通 css 中使用“border-top-left-radius”,但它在 javafx 下不起作用。到目前为止,我尝试过:

.calendar {
    -fx-border-top-left-radius: 10px; 
    -fx-border-top-right-radius: 10px; 
}

提前致谢,

僵尸

4

1 回答 1

43
.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. */
}
于 2013-05-15T14:45:21.753 回答