使用CardLayout實作基於組合框選擇的動態UI
在GUI設計中,經常需要根據不同的情況動態改變使用者介面特定的使用者互動。常見的場景是根據組合方塊的選擇顯示不同的控制項集。
要達成此目的,可以利用 Java AWT 函式庫中的 CardLayout 類別。 CardLayout 管理一堆組件,允許透過一次僅顯示一張卡片來在它們之間切換。
例如,考慮一個對話框,如果選取了組合框,則需要顯示一組控制項並應以其他方式顯示另一組控制項。要使用 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中文網其他相關文章!