本文介绍了如何在Java中的表中添加一个组合框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我有问题,需要您的帮助.
我有一个带有6(1-> 6)列的表,而2,3,5列是组合框列.
单击此列上的任何单元格时,将出现一个组合框,并允许用户选择
来自此组合框端的数据,然后返回普通单元格.
如果知道,请帮助我!
(我是Java初学者)
在此先感谢
Hi all,
I have a problem tat need your help.
I have a table with 6(1->6) column and column 2,3,5 are combobox column.
when click on any cell on this columns, a combobox will appear and allow user choice
data from this combobox end then return normal cell.
if you know, please help me!
(I am a Java beginer)
thanks in advance
推荐答案
class Item {
private int id;
private String description;
public Item(int id, String description) {
this.id = id;
this.description = description;
}
public int getId() {
return id;
}
public String getDescription() {
return description;
}
public String toString() {
return description;
}
}
这篇关于如何在Java中的表中添加一个组合框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!