状態に基づいて Java Swing のボタンの色を変更する
Java Swing では、カスタム ボタンの色によりユーザー エクスペリエンスが向上し、データに関する視覚的な手がかりを提供できます。状態。これは、レストランのテーブル管理など、アプリケーションに動的なデータ変更が含まれるシナリオに特に関係します。
必要な機能を実現するために、Java Swing にはいくつかのオプションが用意されています。
変更ボタンの背景色
点滅ボタンの色
例コード:
import java.awt.Color; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Random; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.Timer; public class ButtonColorExample extends JPanel implements ActionListener { private static final int N = 4; private static final Random rnd = new Random(); private final Timer timer = new Timer(1000, this); private final JButton[] buttons = new JButton[N * N]; public ButtonColorExample() { // Initialize buttons and add them to the panel this.setLayout(new GridLayout(N, N)); for (int i = 0; i < N * N; i++) { JButton btn = new JButton("Button " + String.valueOf(i)); buttons[i] = btn; this.add(btn); } } @Override public void actionPerformed(ActionEvent e) { // Change button colors randomly for (JButton btn : buttons) { btn.setBackground(new Color(rnd.nextInt())); } } public static void main(String[] args) { // Create and configure the frame JFrame frame = new JFrame("Button Color Example"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.add(new ButtonColorExample()); frame.pack(); frame.setLocationRelativeTo(null); frame.setVisible(true); // Start the timer to update button colors timer.start(); } }
この例では、Java Swing で setBackground() と Timer を使用してボタンの色を変更および点滅させる方法を示します。 JPanel クラスを拡張することで、この機能を独自のアプリケーションに簡単に統合できます。
以上がJava Swing で状態に基づいてボタンの色を変更するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。