CardLayout を使用したコンボ ボックス選択に基づく動的 UI の実装
GUI 設計では、多くの場合、ユーザー インターフェイスを状況に応じて動的に変更する必要があります。特定のユーザーインタラクション。一般的なシナリオの 1 つは、コンボ ボックスの選択に基づいてさまざまなコントロールのセットを表示することです。
これを実現するには、Java AWT ライブラリの CardLayout クラスを利用できます。 CardLayout はコンポーネントのスタックを管理し、一度に 1 つのカードだけを表示することでコンポーネント間の切り替えを可能にします。
たとえば、コンボ ボックスがチェックされている場合に 1 つのコントロール グループを表示する必要があるダイアログ ボックスを考えてみましょう。別のコントロールのグループはそうでない場合に表示される必要があります。 CardLayout を使用してこの機能を実装するには:
実装を示すコード スニペットの例を次に示します。
<code class="java">import java.awt.BorderLayout; import java.awt.CardLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JComboBox; import javax.swing.JFrame; import javax.swing.JPanel; public class CardPanelExample { public static void main(String[] args) { JFrame frame = new JFrame(); // Create a CardLayout to manage the layers CardLayout layout = new CardLayout(); JPanel cards = new JPanel(layout); // Add the two layers of controls to the CardLayout JPanel layer1 = new JPanel(); layer1.add(new JLabel("Layer 1")); JPanel layer2 = new JPanel(); layer2.add(new JLabel("Layer 2")); cards.add(layer1, "layer1"); cards.add(layer2, "layer2"); // Create a combo box and add it to the GUI JComboBox<String> combo = new JComboBox<>(); combo.addItem("Layer 1"); combo.addItem("Layer 2"); // Add an ActionListener to the combo box combo.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { // Show the appropriate card based on the selected item layout.show(cards, combo.getSelectedItem()); } }); // Add the combo box and cards panel to the GUI frame.add(combo, BorderLayout.NORTH); frame.add(cards, BorderLayout.CENTER); </code>
以上がJava でコンボ ボックスの選択に基づいて UI 要素を動的に変更するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。