gpt4 book ai didi

JAVA netbeans 与组合框的问题

转载 作者:行者123 更新时间:2023-12-01 14:47:55 24 4
gpt4 key购买 nike

我正在尝试加载 2 个组合框;必须在第一个组合更改后加载第二个组合框。我正在使用netbeans,我尝试了几次但它不起作用......要加载的项目必须与第一个组合中选择的项目相同。

    private void firstTeamComboBoxItemStateChanged(java.awt.event.ItemEvent evt)
{
loadSecondTeamComboBox();
}

private void loadSecondTeamComboBox()
{
String[] theTeamsInTheLeague2 = league.loadTeamsInLeague(secondTeam.getLeague());
secondTeamComboBox.addItem("Select a Team");
for(int i = 0; i < theTeamsInTheLeague2.length; i++)
if (!(theTeamsInLeague2[i].equals(firstTeam.getLeague()))
secondTeamComboBox.addItem(theTeamsInTheLeague2[i]);
}


private void loadFirstTeamComboBox()
{
String[] theTeamsInTheLeague1 = league.loadTeamsInLeague(firstTeam.getLeague());
firstTeamComboBox.addItem("Select a Team");
for(int i = 0; i < theTeamsInTheLeague1.length; i++)
firstTeamComboBox.addItem(theTeamsInTheLeague1[i]);
}

最佳答案

一种方法是重写 DefaultComboBoxModel 中的 setSelectedItem() 并保留对 otherTeamModel 的引用,根据需要从 更新它allTeamsInTheLeague

class MyComboBoxModel extends DefaultComboBoxModel {
private DefaultComboBoxModel otherTeamModel;

public MyComboBoxModel(DefaultComboBoxModel otherTeamModel) {
this.otherTeamModel = otherTeamModel;
}
@Override
public void setSelectedItem(Object item) {
super.setSelectedItem(item);
otherTeamModel.removeAllElements();
// add all allTeamsInTheLeague except item
}
}

关于JAVA netbeans 与组合框的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15228061/

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