Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 javafx 2+ 中创建一个计划界面,但我无法让 TableView 包含看起来像连体组件的 TableCell。
我尝试的第一件事是使用背景颜色和边框,但是,我无法让边框在顶部和底部之间有所不同。
-fx-border-width: 1px, 0px, 0px, 0px;顶部
-fx-border-width: 1px, 0px, 0px, 0px;
-fx-border-width: 0px, 0px, 1px, 0px;为底部
-fx-border-width: 0px, 0px, 1px, 0px;
理想情况下,我将能够跨越列或行,但我知道它不适合控件的模型。任何帮助是极大的赞赏。
只需从您的代码中删除逗号。例如:
-fx-border-width: 1 2 3 4; -fx-border-color: red blue green yellow;