Swing/BlinkLabel のバックアップ(No.15)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/BlinkLabel へ行く。
- 1 (2004-08-19 (木) 02:20:15)
- 2 (2004-10-08 (金) 06:17:52)
- 3 (2004-11-04 (木) 10:02:44)
- 4 (2005-04-28 (木) 04:32:50)
- 5 (2005-05-11 (水) 00:18:44)
- 6 (2005-06-26 (日) 12:46:40)
- 7 (2005-08-03 (水) 03:40:48)
- 8 (2005-09-15 (木) 15:59:18)
- 9 (2006-01-19 (木) 14:24:57)
- 10 (2006-02-27 (月) 15:28:26)
- 11 (2006-04-12 (水) 19:34:33)
- 12 (2007-03-02 (金) 16:11:22)
- 13 (2007-06-22 (金) 11:51:42)
- 14 (2007-06-26 (火) 14:53:53)
- 15 (2007-12-07 (金) 17:46:33)
- 16 (2009-01-08 (木) 16:15:01)
- 17 (2010-12-13 (月) 00:04:40)
- 18 (2011-03-21 (月) 01:40:11)
- 19 (2013-04-07 (日) 04:43:53)
- 20 (2014-03-28 (金) 12:14:45)
- 21 (2015-11-04 (水) 04:24:27)
- 22 (2016-09-01 (木) 21:31:00)
- 23 (2017-10-13 (金) 14:52:21)
- 24 (2019-04-25 (木) 17:33:02)
- 25 (2021-02-05 (金) 08:30:38)
- 26 (2024-04-12 (金) 14:44:59)
TITLE:JLabelの文字列を点滅させる
JLabelの文字列を点滅させる
編集者:Terai Atsuhiro
作成日:2004-04-12
更新日:2024-04-12 (金) 14:44:59
概要
javax.swing.Timer を使って文字列が点滅するJLabelを作成します。
#screenshot
サンプルコード
final JLable label = new JLabel();
Timer timer = new Timer(600, new ActionListener() {
boolean flg = true;
public void actionPerformed(ActionEvent e) {
label.setText((flg)?"!警告!":"");
flg = !flg;
}
});
timer.start();
- &jnlp;
- &jar;
- &zip;
解説
javax.swing.Timerを使って、ラベルのテキスト文字列と空文字列を交互に表示しています。点滅の間隔や、文字列の色を変えたりして実験してみてください。