我使用的是包含名为Subject的列的可编辑JTable
。当第一行为空并且用户单击主题单元格以添加新任务时,默认情况下,用户必须单击两次才能使单元格可编辑。我想让它在单击时可编辑,并在双击时打开另一个表单。我尝试了MouseListener
但未能解决它。有没有办法解决这个问题?如果是这样,它是什么?
我的代码:
class mouseRenderer extends DefaultTableCellRenderer {
JLabel lblcell = new JLabel();
public Component getTableCellRendererComponent(JTable table, Object obj, boolean isSelected, boolean hasFocus, int row,
int column) {
ttable.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
selrow = ttable.getSelectedRow();
selcol = ttable.getSelectedColumn();
if(e.getClickCount() == 1) {
if(selrow == 0) {
lblcell.setText("");
}
}
}
});
return lblcell;
}
}
答案 0 :(得分:5)
只需单击即可编辑,您可以尝试使用jtable中使用的celleditor的'setClickCountToStart()'方法。
答案 1 :(得分:4)
您可以尝试创建像这样的自定义CellEditor并使用setCellEditor()
public class MyTableCellEditor extends AbstractCellEditor implements TableCellEditor {
public boolean isCellEditable(EventObject evt) {
if (evt instanceof MouseEvent) {
int clickCount;
// For single-click activation
clickCount = 1;
// For double-click activation
clickCount = 2;
// For triple-click activation
clickCount = 3;
return ((MouseEvent)evt).getClickCount() >= clickCount;
}
return true;
}
}
答案 2 :(得分:0)
MouseListener
是获取行上双击的方法。它应该工作正常。
只需单击即可编辑,您可能希望使用MouseMotionListener
选择行,并让JTable单击进行编辑。另一种选择可能是使用MouseListener来检测被单击的单元格,但这有点混乱。