gpt4 book ai didi

Javafx 表格行边框导致内部元素移动

转载 作者:搜寻专家 更新时间:2023-10-31 20:08:51 24 4
gpt4 key购买 nike

我正在尝试为选定的表格行添加红色边框,并且该行中的元素正在移动。

这是我的CSS:

.my-table .table-row-cell:filled:selected {
-fx-border-color: red;
}

这是它的截图。

enter image description here

我该如何纠正这个问题?我试过更改边框插图,但似乎没有效果。

-fx-background-insets: 0, 1 ;

创建表的代码是:

<TableView styleClass="my-table" editable="false" >
<columns>
<TableColumn fx:id="columnNumber" minWidth="70" prefWidth="70" sortable="false" text="Solution" />
<TableColumn fx:id="columnOne" minWidth="0" prefWidth="40" sortable="false" text="columnOne" />
<TableColumn fx:id="columnTwo" minWidth="40" prefWidth="40" sortable="false" text="columnTwo" />
<TableColumn fx:id="columnThree" minWidth="70" prefWidth="70" sortable="false" text="columnThree" />
<TableColumn fx:id="columnFour" minWidth="40" prefWidth="40" sortable="false" text="columnFour" />
<TableColumn fx:id="columnFive" minWidth="80" prefWidth="80" sortable="false" text="columnFive" />
<TableColumn fx:id="columnSix" minWidth="80" prefWidth="80" sortable="false" text="columnSix" />
<TableColumn fx:id="columnSeven" minWidth="80" prefWidth="80" sortable="false" text="columnSeven" />
<TableColumn fx:id="columnEight" minWidth="180" prefWidth="180" sortable="false" text="columnEight" />
<TableColumn fx:id="action" minWidth="100" prefWidth="100" sortable="false" text="" />
</columns>
</TableView>

应用的样式是:

.table-view {
-fx-table-cell-border-color: transparent;
}

最佳答案

她的是一个肮脏的修复:

 .my-table .table-row-cell:filled:selected {
-fx-border-color: red;
-fx-border-insets: 0 -1 0 -1;
}

或者

.my-table .table-row-cell:filled:selected {
-fx-border-color: red;
-fx-padding: -1;
}

关于Javafx 表格行边框导致内部元素移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45856098/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com