• title: JLabelの文字列を点滅させる tags: [JLabel, Timer] author: aterai pubdate: 2004-04-12 description: javax.swing.Timerを使って文字列が点滅するJLabelを作成します。

概要

javax.swing.Timerを使って文字列が点滅するJLabelを作成します。

サンプルコード

final JLabel label = new JLabel();
Timer timer = new Timer(600, new ActionListener() {
  private boolean flg = true;
  @Override public void actionPerformed(ActionEvent e) {
    flg ^= true;
    label.setText(flg ? "!!!Warning!!!" : "");
  }
});
timer.start();
View in GitHub: Java, Kotlin

解説

javax.swing.Timerを使って、ラベルのテキスト文字列と空文字列を交互に表示しています。点滅の間隔や、文字列の色を変えたりして実験してみてください。

コメント