如何制作简单扁平风格的JButton?

问题描述 投票:0回答:6

让 JButton 只显示背景色的最简单方法是什么?我不需要任何其他效果,例如边框、3D 外观或悬停突出显示。

提前致谢。

java swing jbutton
6个回答
33
投票

我通常会做这样的事情:

button.setBorderPainted(false);
button.setFocusPainted(false);
button.setContentAreaFilled(false);

13
投票

只需设置颜色和边框:

private static JButton createSimpleButton(String text) {
  JButton button = new JButton(text);
  button.setForeground(Color.BLACK);
  button.setBackground(Color.WHITE);
  Border line = new LineBorder(Color.BLACK);
  Border margin = new EmptyBorder(5, 15, 5, 15);
  Border compound = new CompoundBorder(line, margin);
  button.setBorder(compound);
  return button;
}

使用

setOpaque(false);
使背景透明。


2
投票

怎么样

yourButton.setBorder(null);


1
投票

您可能想将 JLabel 与 MouseListener 一起使用...除非您以某种方式依赖于使用 JButton 或 ActionListener。


1
投票

首先,将你的外观和感觉设置为很酷的东西,比如“金属”。

try
{
    for (UIManager.LookAndFeelInfo lnf : 
        UIManager.getInstalledLookAndFeels()) {
        if ("Metal".equals(lnf.getName())) {
            UIManager.setLookAndFeel(lnf.getClassName());
            break;
        }
    }
} catch (Exception e) { /* Lazy handling this >.> */ }

然后做这样的事情:

my_jbutton.setBackground(new Color(240,240,241);

如果按钮的颜色与swing控件的颜色(240,240,240)完全相同,则Windows将向按钮应用类似Windows的按钮样式,否则,按钮将采用简单的平面样式。


0
投票

我想你可以这样做

JButton button = new JButton("Click Me!!");
button.setBorderPainted(false);
button.setBackground(new Color());// inside the brackets your rgb color value like 255,255,255
button.setFocusPainted(false);

您可以使用颜色选择器获取RGB代码(只需搜索颜色选择器)

© www.soinside.com 2019 - 2024. All rights reserved.