Swing/IconComboBox のバックアップ(No.2)
- バックアップ一覧
 - 差分 を表示
 - 現在との差分 を表示
 - 現在との差分 - Visual を表示
 - ソース を表示
 - Swing/IconComboBox へ行く。
  
- 1 (2004-12-27 (月) 01:32:14)
 - 2 (2004-12-27 (月) 03:24:01)
 - 3 (2005-04-28 (木) 04:33:07)
 - 4 (2005-06-08 (水) 16:12:34)
 - 5 (2005-06-27 (月) 06:47:31)
 - 6 (2005-10-19 (水) 20:02:24)
 - 7 (2006-02-27 (月) 16:02:57)
 - 8 (2006-09-08 (金) 14:48:59)
 - 9 (2007-05-28 (月) 06:30:36)
 - 10 (2009-08-20 (木) 16:32:34)
 - 11 (2009-09-06 (日) 12:31:29)
 - 12 (2013-04-14 (日) 00:44:03)
 - 13 (2015-03-17 (火) 15:01:21)
 - 14 (2015-03-17 (火) 15:06:33)
 - 15 (2016-12-28 (水) 17:18:41)
 - 16 (2017-12-10 (日) 22:12:47)
 - 17 (2019-12-05 (木) 15:41:28)
 - 18 (2021-06-08 (火) 11:23:34)
 - 19 (2025-01-03 (金) 08:57:02)
 - 20 (2025-01-03 (金) 09:01:23)
 - 21 (2025-01-03 (金) 09:02:38)
 - 22 (2025-01-03 (金) 09:03:21)
 - 23 (2025-01-03 (金) 09:04:02)
 - 24 (2025-06-19 (木) 12:41:37)
 - 25 (2025-06-19 (木) 12:43:47)
 
 
#navi(contents-page-name): No such page: ST
Terai Atsuhiro 2021-06-08 (火) 11:23:34
private static Border makeIconComboBorder(JComponent combo, ImageIcon icon) {
  Border b1 = BorderFactory.createMatteBorder(0,icon.getIconWidth(),0,0,icon);
  Border b2 = BorderFactory.createEmptyBorder(0,5,0,0);
  Border b3 = BorderFactory.createCompoundBorder(b1, b2);
  return BorderFactory.createCompoundBorder(combo.getBorder(), b3);
}
- ST/MatteBorder?