我要创造 JList
的 JPanel
,的 JPanel
蠕动的 Jtextfield
以及 JLabel
,我正在创建此jpanel的列表
public class CasofTablecase extends javax.swing.JPanel {
/**
* Creates new form CasofTablecase
*/
public CasofTablecase() {
initComponents();
}
/**
* This method is called from within the constructor to
// Variables declaration - do not modify
private javax.swing.JLabel jLabel1;
private javax.swing.JTextField jTextField1;
// End of variables declaration
}
我在添加一个 DefaultListCellRenderer
为了我的班级 Jlist
) :
public class dlcr extends DefaultListCellRenderer{
@Override
public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
return (new CasofTablecase());
}
}
我的问题是,如果我点击 Jtextfield
为了写一些东西,但是有些事情没有发生,如何使用 CellEditor
.
暂无答案!
目前还没有任何答案,快来回答吧!