Jtable Look and feel of editing cell

一曲冷凌霜 提交于 2019-12-19 11:47:14

问题


There is a JTable with DefaultTableModel. There is table's setforeground, setbackground and setselectioncolor methods. Also when you are editing the cell you have table.setDefaultEditor(Object.class, new DefaultCellEditor(field)) method to change the editing cell's font color. Now how to change the border color of the editing cell. Thankyou.`


回答1:


You can use any of the following keys in UIManager.put() to affect the corresponding Border:

  • Table.focusCellHighlightBorder
  • Table.scrollPaneBorder
  • TableHeader.cellBorder

For example:

UIManager.put("Table.focusCellHighlightBorder",
    new BorderUIResource(BorderFactory.createLineBorder(Color.red)));

You can also change the color in your custom renderer/editor; PositiveIntegerCellEditor is an example. See also Concepts: Editors and Renderers.



来源:https://stackoverflow.com/questions/9249928/jtable-look-and-feel-of-editing-cell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!