java swing tab例子_Java Swing - 如何handle JTabbedPane的Tab切换事件

本文展示了一个Java Swing应用实例,演示如何监听并处理JTabbedPane的Tab切换事件。通过添加ChangeListener,当Tab被切换时,更新北(North)部和南(South)部组件的标签文本。
摘要由CSDN通过智能技术生成

import java.awt.BorderLayout;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JPanel;

import javax.swing.JTabbedPane;

public class Main extends JFrame {

private void init() {

this.setLayout(new BorderLayout());

JPanel topPanel = new JPanel();

final JLabel topLabel = new JLabel("North");

topPanel.add(topLabel);

this.add(topPanel, BorderLayout.NORTH);

JTabbedPane tabbedPane = new JTabbedPane();

JPanel firstTabCont = new JPanel();

firstTabCont.add(new JLabel("First"));

tabbedPane.addTab("First", firstTabCont);

JPanel secondTabCont = new JPanel();

secondTabCont.add(new JLabel("Second"));

tabbedPane.addTab("Second", secondTabCont);

this.add(tabbedPane, BorderLayout.CENTER);

JPanel bottomPanel = new JPanel();

final JLabel bottomLabel = new JLabel("South");

bottomPanel.add(bottomLabel);

this.add(bottomPanel, BorderLayout.SOUTH);

tabbedPane.addChangeListener(evt -> {

JTabbedPane pane = (JTabbedPane) evt.getSource();

int selectedIndex = pane.getSelectedIndex();

if (selectedIndex == 0) {

topLabel.setText("");

topLabel.setText("Hi");

bottomLabel.setText("");

bottomLabel.setText("Bye");

} else {

topLabel.setText("");

topLabel.setText("Bye");

bottomLabel.setText("");

bottomLabel.setText("Hi");

}

});

this.pack();

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

this.setVisible(true);

}

public static void main(String[] args) {

new Main().init();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值