swing jtable添加JComboBox控件,但是没有效果 5
我是新手,在网上查了好多,写了下面的代码,但是还是没有用,请大神指点迷津!代码如下:decodingTabel=newJTable();JComboBoxtable_co...
我是新手,在网上查了好多,写了下面的代码,但是还是没有用,
请大神指点迷津!
代码如下:
decodingTabel = new JTable();
JComboBox table_comboBox = new JComboBox();
table_comboBox.addItem("1920x1080P_60HZ");
table_comboBox.addItem("1920x1080P_50HZ");
table_comboBox.addItem("1920x1080P_30HZ");
table_comboBox.addItem("1366x768P_60HZ");
decodingTabel.getColumnModel().getColumn(4).setCellEditor(new DefaultCellEditor(table_comboBox)); 展开
请大神指点迷津!
代码如下:
decodingTabel = new JTable();
JComboBox table_comboBox = new JComboBox();
table_comboBox.addItem("1920x1080P_60HZ");
table_comboBox.addItem("1920x1080P_50HZ");
table_comboBox.addItem("1920x1080P_30HZ");
table_comboBox.addItem("1366x768P_60HZ");
decodingTabel.getColumnModel().getColumn(4).setCellEditor(new DefaultCellEditor(table_comboBox)); 展开
1个回答
展开全部
你的java和图片放在一个目录,
我都是放在C盘根目录了,
给你稍微改了一下代码:
import java.awt.*;
import javax.swing.*;
public class TestGra extends JFrame {
Container c = getContentPane();
JLabel lb;
Image image;
public TestGra() {
// 就改这里了
ImageIcon img = new ImageIcon(System.getProperty("user.dir") + "\\1.jpeg");
lb = new JLabel(img);
add(lb, BorderLayout.CENTER);
setSize(800, 600);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String as[]) {
new TestGra();
}
}
我都是放在C盘根目录了,
给你稍微改了一下代码:
import java.awt.*;
import javax.swing.*;
public class TestGra extends JFrame {
Container c = getContentPane();
JLabel lb;
Image image;
public TestGra() {
// 就改这里了
ImageIcon img = new ImageIcon(System.getProperty("user.dir") + "\\1.jpeg");
lb = new JLabel(img);
add(lb, BorderLayout.CENTER);
setSize(800, 600);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String as[]) {
new TestGra();
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询