首页上一页 1 下一页尾页 1 条记录 1/1页
急求调用JInternalFrame窗体方法
发表在Java图书答疑
2009-07-17
是否精华
是
否
版块置顶:
是
否
final JButton xiangxiButton = new JButton();
setupComponet(xiangxiButton, 2, 2, 1, 1, false);
xiangxiButton.setText("详细信息");
xiangxiButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JInternalFrame frame = new JInternalFrame();
show();
}
});
怎么调用另一个已创建好的内部窗体DetailInfo.class
setupComponet(xiangxiButton, 2, 2, 1, 1, false);
xiangxiButton.setText("详细信息");
xiangxiButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JInternalFrame frame = new JInternalFrame();
show();
}
});
怎么调用另一个已创建好的内部窗体DetailInfo.class