左上と右上の2つの角が丸いペインを作成したいのですが、javafxでこれを行うにはどうすればよいですか?私は通常のcssで「border-top-left-radius」を使用できることを知っていますが、javafxでは機能しません。今まで私は試しました:
.calendar {
-fx-border-top-left-radius: 10px;
-fx-border-top-right-radius: 10px;
}
前もって感謝します、
ゾンビ
.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. */
}