gpt4 book ai didi

java - 将一个面板类的按钮连接到另一个面板类的数据

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:47:12 25 4
gpt4 key购买 nike

首先大家好,感谢您的帮助。我在使用特定的类设置使用 java swing 创建简单程序时遇到问题。我将能够使用更简单的设置使其工作,但对于我的任务,它需要以这种方式完成。无论如何代码:

这是带有类实例的基本 jframe。真的很简单,这里就不多说了。

public class MainFrame extends JFrame {

private FormPanel fPanel;
DonjiBotuniPanel dbtnPanel;

public MainFrame() {

super("Enrollment app");
setLayout(new BorderLayout());
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLocationRelativeTo(null);
setSize(400, 300);
setMinimumSize(new Dimension(400, 300));
// setResizable(false);
createComposition();
add(fPanel, BorderLayout.CENTER);
add(dbtnPanel, BorderLayout.SOUTH);

}

private void createComposition() {
fPanel = new FormPanel();
dbtnPanel = new DonjiBotuniPanel();

}

}

然后我们有了第一个面板类,其中包含一些布局和组件创建方法以及一些用于字段数据的 getter:

public class FormPanel extends JPanel {

private JLabel fNameLbl;
private JLabel lNameLbl;
private JLabel depLbl;
private JLabel idLbl;
private JTextField fNameTxt;
private JTextField lNameTxt;
private JTextField idTxt;
private JComboBox<String> depCombo;
private JRadioButton croCitzn;
private JRadioButton forCitzn;
private DefaultComboBoxModel<String> dcBoxModel;
private ButtonGroup radGrp;

public FormPanel() {

setLayout(new GridBagLayout());
createComposition();
GridBagConstraints gbc = new GridBagConstraints();

gbc.insets = new Insets(5, 5, 5, 5);
// gbc.weighty = 1;
gbc.gridx = 0;
gbc.gridy = 0;
gbc.anchor = GridBagConstraints.FIRST_LINE_START;
add(fNameLbl, gbc);

gbc.gridx = 1;
gbc.gridy = 0;
add(lNameLbl, gbc);

gbc.gridx = 2;
gbc.gridy = 0;
add(depLbl, gbc);

// gbc.weighty = 0;
gbc.gridx = 0;
gbc.gridy = 1;
add(fNameTxt, gbc);

gbc.gridx = 1;
gbc.gridy = 1;
add(lNameTxt, gbc);

gbc.gridx = 2;
gbc.gridy = 1;
add(depCombo, gbc);

gbc.insets = new Insets(20, 0, 0, 0);
gbc.gridx = 0;
gbc.gridy = 3;
add(idLbl, gbc);

gbc.insets = new Insets(5, 5, 5, 5);
gbc.gridx = 0;
gbc.gridy = 4;
add(idTxt, gbc);

gbc.gridx = 1;
gbc.gridy = 4;
add(croCitzn, gbc);

gbc.gridx = 1;
gbc.gridy = 5;
add(forCitzn, gbc);
setBorders();

}

private void setBorders() {

Border inner = BorderFactory.createTitledBorder("user info:");
Border outer = BorderFactory.createEmptyBorder(5, 5, 5, 5);

setBorder(BorderFactory.createCompoundBorder(outer, inner));
}

private void createComposition() {
fNameLbl = new JLabel("First name: ");
fNameTxt = new JTextField(5);
lNameLbl = new JLabel("Last name: ");
lNameTxt = new JTextField(5);
depLbl = new JLabel("Department");
idLbl = new JLabel("Unique id: ");
idTxt = new JTextField(5);
createComboModel();
depCombo = new JComboBox<>(dcBoxModel);
radGrp = new ButtonGroup();
croCitzn = new JRadioButton("CRO citizenship");
forCitzn = new JRadioButton("Foreign citizenship");
radGrp.add(croCitzn);
radGrp.add(forCitzn);
croCitzn.setSelected(true);

}

private void createComboModel() {
dcBoxModel = new DefaultComboBoxModel<>();
dcBoxModel.addElement("Informatika");
dcBoxModel.addElement("Kultura");
dcBoxModel.addElement("Turizam");
dcBoxModel.addElement("Filozofija");
dcBoxModel.addElement("Jezik");
}



public String getfNameTxt() {
return fNameTxt.getText();
}

public String getlNameTxt() {
return lNameTxt.getText();
}

public String getIdTxt() {
return idTxt.getText();
}


}

最后是下面三个按钮的面板类:

public class DonjiBotuniPanel extends JPanel {

private JButton sndDta;
private JButton cncl;
private JButton src;
private JPanel contBtn;
private JPanel contBtn2;

public DonjiBotuniPanel() {
setLayout(new BorderLayout());
createComposition();

add(contBtn, BorderLayout.LINE_END);
add(contBtn2, BorderLayout.LINE_START);

}

private void createComposition() {
sndDta = new JButton("Send data");
cncl = new JButton("Cancel");
src = new JButton("Search");
contBtn = new JPanel(new FlowLayout(FlowLayout.RIGHT));
contBtn.add(src);
contBtn2 = new JPanel(new FlowLayout(FlowLayout.LEFT));
contBtn2.add(sndDta);
contBtn2.add(cncl);
}

}

现在麻烦开始了。我终生无法将 DonjiBotuniPanel 中的按钮与 FormPanel 中的数据连接起来。我知道我可以在单个 java 文件中使用内部/外部类以不同方式设置类,并且我能够以这种方式工作。但我不能让它以这种方式工作。我知道它们之间需要有联系,也许是某种 Controller ,我尝试了很多不同的东西,但我似乎不太明白。

因此,如果您不想通读所有代码(无论如何,其中大部分只是组件创建和布局),请进行简化。我在三个 java 文件中有三个类。一个是 MainFrame,我在其中创建了后两个类的实例 - FormPanel 在其自己的 java 文件中具有所有 JTextFields(数据),而 DonjiBotuniPanel 具有三个按钮。由于我无法真正在 DonjiBotuniPanel 中创建 FormPanel(data) 的新实例,因此我无法从 FormPanel 中提取数据以使用 DonjiBotuniPanel 中的按钮进行操作。

我们将不胜感激任何帮助。

最佳答案

只需创建一个新类,例如 DataTransferClass,然后在 MainFrame 中初始化该类。DonjiBotuniPanel 和 FormPanel 将此对象作为其构造函数参数。在 DataTransferClass 中添加必要的数据字段,并在 FormPanel 中设置这些字段的值,并在 DonjiBotuniPanel 中获取它们。在 MainFrame 类 createComposition 方法中进行如下更改:

主框架:

private void createComposition() {
dataTransferClass = new DataTransferClass();
fPanel = new FormPanel(dataTransferClass);
dbtnPanel = new DonjiBotuniPanel(dataTransferClass);
}

在其他类中进行必要的更改。

关于java - 将一个面板类的按钮连接到另一个面板类的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51081990/

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