gpt4 book ai didi

java - 根据所选的 JComboBox 的不同而变化的 JList 内容

转载 作者:行者123 更新时间:2023-11-30 03:54:31 25 4
gpt4 key购买 nike

我想用Java 创建一个由JComboBox 和JList 组成的GUI。

从 JComboBox {A, B, C} 中选择替代项。根据所做的选择(A、B 或 C),JList 中会显示不同的列表。

示例:如果我在 JComboBox 中选择 A,JList 将显示以下字符串:A1、A2、A3、A4

如果我在 JComboBox 中选择 B,JList 将显示以下字符串:B1、B2、B3、B4

如果我在 JComboBox 中选择 C,JList 将显示以下字符串:C1、C2、C3、C4

我怎样才能做这样的事情?

谢谢

最佳答案

您将一个 ActionListener 添加到组合框。然后,当选择一个项目时,您可以使用新的 ListModel 更新 JList。

这是一个包含两个组合框的示例,但组合框和 JList 的概念是相同的。

import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;

public class ComboBoxTwo extends JPanel implements ActionListener
{
private JComboBox<String> mainComboBox;
private JComboBox<String> subComboBox;
private Hashtable<String, String[]> subItems = new Hashtable<String, String[]>();

public ComboBoxTwo()
{
String[] items = { "Select Item", "Color", "Shape", "Fruit" };
mainComboBox = new JComboBox<String>( items );
mainComboBox.addActionListener( this );

// prevent action events from being fired when the up/down arrow keys are used
mainComboBox.putClientProperty("JComboBox.isTableCellEditor", Boolean.TRUE);
add( mainComboBox );

// Create sub combo box with multiple models

subComboBox = new JComboBox<String>();
subComboBox.setPrototypeDisplayValue("XXXXXXXXXX"); // JDK1.4
add( subComboBox );

String[] subItems1 = { "Select Color", "Red", "Blue", "Green" };
subItems.put(items[1], subItems1);

String[] subItems2 = { "Select Shape", "Circle", "Square", "Triangle" };
subItems.put(items[2], subItems2);

String[] subItems3 = { "Select Fruit", "Apple", "Orange", "Banana" };
subItems.put(items[3], subItems3);
}

public void actionPerformed(ActionEvent e)
{
String item = (String)mainComboBox.getSelectedItem();
Object o = subItems.get( item );

if (o == null)
{
subComboBox.setModel( new DefaultComboBoxModel() );
}
else
{
subComboBox.setModel( new DefaultComboBoxModel( (String[])o ) );
}
}

private static void createAndShowUI()
{
JFrame frame = new JFrame("SSCCE");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add( new ComboBoxTwo() );
frame.setLocationByPlatform( true );
frame.pack();
frame.setVisible( true );
}

public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
createAndShowUI();
}
});
}
}

关于java - 根据所选的 JComboBox 的不同而变化的 JList 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23584537/

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