gpt4 book ai didi

java - 仅对选定行使用 jTable.setRowHeight(selectedRow, 20)

转载 作者:行者123 更新时间:2023-11-29 04:52:13 26 4
gpt4 key购买 nike

大家好,希望你们今天一切顺利。我今天关于如何使用的问题

int selectedRow = jTable.getSelectedRow();
jTable.setRowHeight(selectedRow, 40);

仅针对选定的行..我想将其与 KeyEvent.VK_DOWN/VK_UP 或 MousClicked 一起使用..任何想法的人..

谢谢你的建议

最佳答案

使用 ListSelectionListener

类似于:

table.getSelectionModel().addListSelectionListener(new ListSelectionListener()
{
int lastRow = -1;

public void valueChanged(ListSelectionEvent e)
{
if (!e.getValueIsAdjusting())
{
if (lastRow != -1)
table.setRowHeight(lastRow, table.getRowHeight());

int row = table.getSelectedRow();
table.setRowHeight(row, 40);
lastRow = row;
}
}
});

关于java - 仅对选定行使用 jTable.setRowHeight(selectedRow, 20),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35018088/

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