4

使用 setRollover(true) 时,Swing 工具栏上的按钮是扁平的,没有边框,只有在悬停/按下按钮时才会绘制边框。但是,如果先将按钮添加到面板,然后将面板添加到工具栏,则此方法不起作用。有没有一些简单的方法来实现它?

我希望按钮位于 JPanel 中,以使它们充当单个组件(想象一个带有第一页/上一页/下一页/最后一页按钮的分页组件)。无论 L&F 是什么,我也希望它能够正常工作(如果 JPanel 不在工具栏和按钮之间)。

编辑:

在以下示例中,将按钮一和二(直接添加)与按钮三和四(通过 JPanel 添加)进行比较:

import javax.swing.*;

public class ToolbarTest extends JFrame {
    ToolbarTest() {
        JToolBar toolbar = new JToolBar();
        toolbar.setRollover(true);

        JButton button = new JButton("One");
        button.setFocusable(false);
        toolbar.add(button);

        button = new JButton("Two");
        button.setFocusable(false);
        toolbar.add(button);

        JPanel panel = new JPanel();
        button = new JButton("Three");
        button.setFocusable(false);
        panel.add(button);

        button = new JButton("Four");
        button.setFocusable(false);
        panel.add(button);

        toolbar.add(panel);

        add(toolbar);
        pack();
    }

    public static void main(String[] args) throws Throwable {
        // optional: set look and feel (some lf might ignore the rollover property)
        for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
            if ("Nimbus".equals(info.getName())) {      // or "Windows", "Motif"
                javax.swing.UIManager.setLookAndFeel(info.getClassName());
                break;
            }
        }

        ToolbarTest frame = new ToolbarTest();
        frame.setVisible(true);
    }
}

以下是截图:

Nimbus LF 上的工具栏:

Nimbus LF 上的工具栏

鼠标悬停在第二个按钮上时的相同工具栏(未显示鼠标光标):

盘旋的雨云

Windows LF 上的相同工具栏:

Windows LF 上的相同工具栏

我希望三个和四个按钮的工作方式与一个和两个按钮相同。

4

2 回答 2

1

使用另一个 JToolbar 而不是 JPanel 可以工作。

但是:如果我想将复合组件包含到对话框或工具栏以外的其他东西中,我可能会(或者可能不会?)有问题。(这类似于有两种类型的按钮,一种用于工具栏,另一种用于其余按钮)

这是添加面板更改为添加工具栏的问题中的代码部分。

JToolBar component = new JToolBar();
component.setRollover(true);
component.setBorder(null);
component.setFloatable(false);

button = new JButton("Three");
button.setFocusable(false);
component.add(button);

button = new JButton("Four");
button.setFocusable(false);
component.add(button);

toolbar.add(component);
于 2012-03-14T20:04:02.393 回答
1

1)我建议将 JMenuBar 设置为容器而不是JToolbar

缺点:

  • 不可移动和可拆卸,也不脱离Container

  • 可以放置在任何地方,但只能放在 Container 内,就像另一个一样JComponent使用LayoutManager


2)forJToolBar会更好地放置一个JPanel嵌套另一个JComponents,如您的代码示例所示


3)在您的代码示例中,您定义了JButton四次,在 Java 中需要定义为单独的Objects

于 2012-03-14T16:54:35.550 回答