ネストされた Swing レイアウトの例
Swing は非常に人気のある Java インターフェイス開発ツールキットであり、グラフィカル デザインのための一連のレイアウト マネージャーを提供し、ユーザー内でコンポーネントのレイアウトを構築します。インターフェース。この記事では、Swing レイアウト マネージャーを使用したネスト レイアウトの例を紹介します。
Swing では、さまざまなレイアウト マネージャーを使用して、BorderLayout、FlowLayout、GridLayout などのさまざまなレイアウト効果を実現できます。ネストされたレイアウトを実装するには、コンテナ内で複数のレイアウト マネージャーを使用して、複雑なインターフェイス レイアウトを実現します。以下は、ネストされたレイアウトに Swing レイアウト マネージャーを使用する方法を示すサンプル コードです。
import javax.swing.*; import java.awt.*; public class NestedLayoutExample extends JFrame { public NestedLayoutExample() { // 设置窗口标题 setTitle("嵌套布局示例"); // 创建容器 Container container = getContentPane(); // 创建顶层布局 BorderLayout borderLayout = new BorderLayout(); container.setLayout(borderLayout); // 创建 North 区域的组件 JLabel northLabel = new JLabel("North 区域"); northLabel.setHorizontalAlignment(JLabel.CENTER); container.add(northLabel, BorderLayout.NORTH); // 创建 South 区域的组件 JPanel southPanel = new JPanel(); FlowLayout flowLayout = new FlowLayout(); southPanel.setLayout(flowLayout); JButton southButton1 = new JButton("Button1"); JButton southButton2 = new JButton("Button2"); southPanel.add(southButton1); southPanel.add(southButton2); container.add(southPanel, BorderLayout.SOUTH); // 创建 Center 区域的组件 JPanel centerPanel = new JPanel(); GridLayout gridLayout = new GridLayout(2, 2); centerPanel.setLayout(gridLayout); JButton centerButton1 = new JButton("Button1"); JButton centerButton2 = new JButton("Button2"); JButton centerButton3 = new JButton("Button3"); JButton centerButton4 = new JButton("Button4"); centerPanel.add(centerButton1); centerPanel.add(centerButton2); centerPanel.add(centerButton3); centerPanel.add(centerButton4); container.add(centerPanel, BorderLayout.CENTER); // 设置窗口大小、位置和可见性 setSize(400, 300); setLocationRelativeTo(null); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); } public static void main(String[] args) { // 创建 NestedLayoutExample 对象 new NestedLayoutExample(); } }
上記のサンプル コードでは、BorderLayout をトップレベルのレイアウト マネージャーとして使用し、コンテナーを BorderLayout レイアウトに設定します。 。次に、中央揃えのラベルを北エリアに追加し、2 つのボタンを備えた FlowLayout パネルを南エリアに追加します。最後に、中央領域に GridLayout レイアウト パネルを追加します。これには 4 つのボタンが含まれます。
上記のコードを実行すると、ウィンドウの上部にラベル、下部に 2 つのボタン、中央に 2x2 のボタン グリッドのあるウィンドウが表示されます。
概要:
この記事では、ネストされたレイアウトに Swing のレイアウト マネージャーを使用する方法を説明しました。コンテナ内で異なるレイアウト マネージャーを使用することで、柔軟で多様なインターフェイス レイアウトを実現できます。ニーズに応じてさまざまなレイアウト マネージャーを使用し、コンポーネントのサイズと位置を調整することでさまざまな複雑なインターフェイス レイアウトを設計できます。この記事が、Swing レイアウトのネストされた使用法を理解するのに役立つことを願っています。
以上が例: Swing レイアウトを使用したネストのデモの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。