JTable 在 Java 中为特定网格线着色

发布于 2025-01-08 00:43:34 字数 60 浏览 0 评论 0原文

我有这个 8x8 的表格,我想将表格最顶部的第一个和第二个单元格的网格着色为红色。我的问题是可以这样做吗?

I have this 8x8 table and and I want to color the grid of the first and the second cell at the very top of the table with red. My question is it possible to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜还是长夜 2025-01-15 00:43:34

编辑:我删除了这个,因为我认为这不是OP想要的。我根据OP的要求取消删除它。

我有这个 8x8 表格,我想为第一个表格的网格着色
表格最顶部的第二个单元格为红色。我的问题
可以这样做吗?

是的当然。

一种方法是扩展现有渲染器并重写 getTableCellRendererComponent 方法。

例如:

public class GridlineCellRenderer extends DefaultTableCellRenderer {

    @Override
    public Component getTableCellRendererComponent (
        JTable table,
        Object value,
        boolean isSelected,
        boolean hasFocus,
        int row,
        int column
    ) {
        final Component cell = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
        if ( row == 0 && (column == 0 || column ==1 ) {
            cell.setBackground( Color.RED );
        }
        return cell;
    }
}

然后您需要警告您的 JTable 您想要将此渲染器用于某些类型的数据。

例如,如果您想将其用于包含整数的单元格,则以下内容应该有效:

JTable myJTable = ...
myJTable.setDefaultRenderer(Integer.class, new GridlineCellRenderer() );

EDIT: I deleted this because I thought this wasn't what OP wanted. I'm undeleting it at OP's request.

I have this 8x8 table and and i want to color the grid of the first
and the second cell at the very top of the table with red. My question
is it possible to do this?

Yes of course.

One way to do it would be to extend an existing renderer and override the getTableCellRendererComponent method.

For example:

public class GridlineCellRenderer extends DefaultTableCellRenderer {

    @Override
    public Component getTableCellRendererComponent (
        JTable table,
        Object value,
        boolean isSelected,
        boolean hasFocus,
        int row,
        int column
    ) {
        final Component cell = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
        if ( row == 0 && (column == 0 || column ==1 ) {
            cell.setBackground( Color.RED );
        }
        return cell;
    }
}

You then need to warn your JTable that you want to use this renderer for certain types of data.

For example if you want to use this for cells containing Integer, the following should work:

JTable myJTable = ...
myJTable.setDefaultRenderer(Integer.class, new GridlineCellRenderer() );
陌伤浅笑 2025-01-15 00:43:34

由于您只想根据位置而不是类型影响某些单元格,因此请覆盖 prepareRenderer() 并返回一个组件,该组件具有所需单元格的红色 Border。另请参阅如何使用表

Because you want to affect only certain cells based on location rather than type, override prepareRenderer() and return a component having a red Border for the desired cells. See also How to Use Tables.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文