gpt4 book ai didi

java - 将 JPanel 设置为另一个类的新 JPanel

转载 作者:太空宇宙 更新时间:2023-11-04 13:13:53 25 4
gpt4 key购买 nike

我有一个主 Java GUI,看起来像 this

enter image description here

基本上有一个containerPanel,其中包含一个卡片cardPanel(右侧),然后是左侧的GridLayout tabPanel。

cardPanel 包含许多卡片,其中一张是病人卡片。这基本上显示了一个包含患者 JTable 的 JPanel。

我想调用如下代码:

cards = new CardLayout(); 
cardPanel = new JPanel();
containerPanel.add(cardPanel, BorderLayout.CENTER);
cardPanel.setLayout(cards);
cards.show(cardPanel, null);

patientsCard = new CSVTable();
cardPanel.add(patientsCard, "View Patients Panel");

然后调用查看方式:

viewButton = new JButton("View Patients"); 
tabsPanel.add(viewButton);
viewButton.addActionListener(new ActionListener() {
@Override public void actionPerformed(ActionEvent event) {
cards.show(cardPanel,"View Patients Panel");
}
});

并不是说这段代码实际上适用于我的注册面板,它不是从另一个类调用的,但就像:

registrationCard = new JPanel()

出于某种原因,当从主 GUI 中调用此 CSVTable 面板时,即使我执行更改背景等简单操作,也根本不会显示。我尝试了各种步骤,包括尝试包含新的 RunnableCSVTabletry方法,改变 patientCard 的类型输入CSVTable对象,将变量更改为 public ,输入 CSVTable()代码在 public static void main(String[] args) method而不是构造函数。

但是,我知道 CSVTable 代码有效,因为我尝试通过 windowbuilder 使用完全相同的代码创建一个新的 swing 应用程序窗口(但只是包含 JFrame,而不仅仅是 JPanel),并且它运行并且看起来像 this .

enter image description here

有关信息,这是我的 CSVTable() 类代码:

package hospitalsystem;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.io.FileReader;
import java.io.Reader;
import java.util.Arrays;
import java.util.Scanner;
import java.util.Vector;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextPane;
import javax.swing.table.DefaultTableModel;


public class CSVTable extends JPanel {

/*
* These are all static because I initially had these being referred to in a main class in CSVTable
*/
public static String datafile;
public static DefaultTableModel m;
public static JPanel viewCard;
public static FileReader fin;
public static JScrollPane patientScrollPane;
public static JTable patientTable;
public static Dimension patientPaneDimension;


public DefaultTableModel createTableModel(Reader in, Vector<Object> headers) {
DefaultTableModel model = null;
Scanner s = null;
Vector<Object> c;
try {
Vector<Vector<Object>> rows = new Vector<Vector<Object>>();
s = new Scanner(in);
while (s.hasNextLine()) {
rows.add(new Vector<Object>(
Arrays.asList(s.nextLine().split("\\s*,\\s*", -1))));
}
if (headers == null) {
headers = rows.remove(0);
model = new DefaultTableModel(rows, headers);
} else {
model = new DefaultTableModel(rows, headers);
}
return model;
} finally {
s.close();
}
}


public CSVTable(){
try {
datafile = "[my file location, kept private]";
fin = new FileReader(datafile);
m = createTableModel(fin, null);//This uses the method above
System.out.println(m);
viewCard = new JPanel();
viewCard.setLayout(new BorderLayout());
viewCard.setBackground(Color.BLACK);//This was not being called at all
patientTable = new JTable(m);
patientTable.setPreferredScrollableViewportSize(new Dimension(700, 70));
patientTable.setFillsViewportHeight(true);
patientScrollPane = new JScrollPane(patientTable);
patientScrollPane.setBackground(Color.WHITE);
patientScrollPane.setOpaque(true);
patientTable.setBackground(Color.WHITE);
viewCard.add(patientScrollPane, BorderLayout.CENTER);
viewCard.add(patientTable, BorderLayout.CENTER);
viewCard.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}

}

最佳答案

我自己已经解决了这个问题。

我正在打电话

患者卡 = new CSVTable();

这应该自动生成一个新的JPanel。但是,在 CSVTable 类中,我还通过以下方式生成了一个新的 JPanel:

viewCard = new JPanel();

当我在 CSVTable 类中删除对 viewCard(这个新 JPanel)的所有引用时,我的面板将在主 GUI 中正确呈现。

希望这可以帮助处于相同情况的其他人。

关于java - 将 JPanel 设置为另一个类的新 JPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33709630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com