如何让jtable不得到焦点? (50分)

  • 主题发起人 主题发起人 henry3
  • 开始时间 开始时间
H

henry3

Unregistered / Unconfirmed
GUEST, unregistred user!
[?]如何让jtable不得到焦点?
jTable1.setRequestFocusEnabled(false);
没用
 
setRequestFocusEnabled() is typically honored for mouse operations, but not keyboard operations.
Use jTable1.setFocusable(false);
instead.
 
老大,哪有setfocusable()方法?
 
In JDK 1.4.
If youdo
n't want to upgrade to 1.4, you may use setEnabled(false). All the table is disabled then
.
 
哪去down jdk1.4? 我在sun.com上都没发现?
 
后退
顶部