如何更改选中时选项卡的颜色?及其边界?在这种情况下,其
Arbitros
选项卡是蓝色的,我该如何更改它?我在 JTabbedPane
中使用 JFrame
我发现了这个,但它不起作用 UIManager.put("TabbedPane.selected", Color.white);
我做错了什么?
public VentanaPrincipal_vista() {
super("Ventana Principal");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(1000, 500);
this.setResizable(false);
this.setUndecorated(true);
this.setBackground(Color.BLUE);
// add tabbedPane and tabs .
tabs = new JTabbedPane();
tabs.setBackground(new Color(83, 83, 83));
tabs.setForeground(new Color(255, 255, 255));
tabs.setBorder(null);
UIManager.put("TabbedPane.selected", Color.white);
this.add(tabs);
menuBar = new BGMenuBar();
menuBar.setColor(new Color(83, 83, 83));
this.setJMenuBar(menuBar);
menu = new JMenu("File");
menu.setForeground(Color.white);
menuBar.add(menu);
close = new JMenuItem("Close");
menu.add(close);
close.addActionListener(this);
close.setBackground(new Color(83, 83, 83));
close.setForeground(new Color(255, 255, 255));
op1 = new JMenuItem("option 1");
op1.setBackground(new Color(83, 83, 83));
op1.setForeground(new Color(255, 255, 255));
menu.add(op1);
this.setLocationRelativeTo(null);
this.setVisible(true);
}// end of constructor
对我来说,以下解决方案有效,我只需在创建 JTabbedPane 对象之前设置 UImanager 的 TabbedPane.selected 颜色属性。
UIManager.put("TabbedPane.selected", Color.red);
tabbedPane = new JTabbedPane();
对CodeyX1的回答的评论: 对我来说,uimanager 未选择状态适用于这些值(中间没有“Tab”字):
UIManager.put("TabbedPane.unselectedForeground", Color.xxx)
UIManager.put("TabbedPane.selectedBackground", Color.xxx)
我知道这是旧帖子,但是,我也遇到了这个问题,按钮被聚焦, 所以这对我有用:
UIManager.put("TabbedPane.selected", Color.red);
+
tabbedPane.setFocusable(false);
or
UIManager.put("TabbedPane.focus", Color.red);
试试这个:
import java.awt.*;
import javax.swing.*;
import javax.swing.plaf.basic.BasicTabbedPaneUI;
public class TabHighlight extends JPanel
{
private static final int MAX = 5;
private JTabbedPane pane = new JTabbedPane();
public TabHighlight()
{
for (int i = 0; i < MAX; i++)
{
Color color = Color.black; //Set default tab background to black
pane.add("Tab " + String.valueOf(i), new TabContent(pane, i, color));
pane.setBackgroundAt(i, color);
pane.setForegroundAt(i, Color.white);
}
this.add(pane);
}
private static class TabContent extends JPanel
{
private TabContent(JTabbedPane panel, int i, Color color)
{
//Active and inactive tab coloring must be done
//when rendering the CONTENT of the JTabbedPane object
//Override these default settings to allow for active and inactive
//tab background color changing
panel.setUI(new BasicTabbedPaneUI()
{
@Override
protected void installDefaults()
{
super.installDefaults();
highlight = Color.lightGray;
lightHighlight = Color.white;
shadow = Color.gray;
darkShadow = Color.darkGray;
//Active tab background is white
//so set the focus color to white
//to hide the active tab focus
//marker seeing that we want the
//active tab backgound to be different
focus = Color.black;
}
});
//Set the active tab background to white
UIManager.put("TabbedPane.selected", Color.gray);
UIManager.put("TabbedPane.unselectedTabBackground", Color.black);
//Remove borders
UIManager.put("TabbedPane.contentBorderInsets", new Insets(0, 0, 0, 0));
setOpaque(true);
setBackground(color);
setForeground(Color.white);
add(new JLabel("Tab content " + String.valueOf(i)));
}
@Override
public Dimension getPreferredSize()
{
return new Dimension(320, 240);
}
}
public void display()
{
JFrame f = new JFrame("TabHighlight");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.add(this);
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}
//Use this function here to change the look and feel to Java's default
//If using a mac with OS X Yosemite or another recent Mac OS X release
public static void initLookAndFeel()
{
try
{
UIManager.setLookAndFeel(
UIManager.getCrossPlatformLookAndFeelClassName()
);
}
catch(UnsupportedLookAndFeelException e)
{
}
catch(ClassNotFoundException e)
{
}
catch(InstantiationException e)
{
}
catch(IllegalAccessException e)
{
}
}
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
@Override
public void run()
{
initLookAndFeel();
new TabHighlight().display();
}
});
}
}
让我们看一下这段代码,它在程序启动时添加了 5 个选项卡:
public TabHighlight()
{
for (int i = 0; i < MAX; i++)
{
Color color = Color.black; //Set default tab background to black
Color color2 = Color.white; //Set default tab foreground to white
pane.add("Tab " + String.valueOf(i), new TabContent(pane, i, color));
pane.setBackgroundAt(i, color);
pane.setForegroundAt(i, Color.white);
}
this.add(pane);
}
您在程序中请求帮助的第一个区域是“for”块。我会尽力以您能理解的方式解释这一点。
前两行定义每个非活动选项卡的默认背景和前景色。您可以将它们更改为您喜欢的颜色。
第三行添加一个具有以下属性的选项卡:
第四行应用默认背景颜色
最后一行应用默认的前景色。注意:这些属性不能用
UIManager
更改。我尝试了一些替代方法,但没有成功。该死,我希望有一种更简单的方法来实现这一目标。
现在让我们仔细看看定义活动和非活动选项卡外观的代码片段:
private TabContent(JTabbedPane panel, int i, Color color)
{
//Active and inactive tab coloring must be done
//when rendering the CONTENT of the JTabbedPane object
//Override these default settings to allow for active and inactive
//tab background color changing
panel.setUI(new BasicTabbedPaneUI()
{
@Override
protected void installDefaults()
{
super.installDefaults();
highlight = Color.lightGray;
lightHighlight = Color.white;
shadow = Color.gray;
darkShadow = Color.darkGray;
//Active tab background is white
//so set the focus color to white
//to hide the active tab focus
//marker seeing that we want the
//active tab backgound to be different
focus = Color.black;
}
});
//Set the active tab background to white
UIManager.put("TabbedPane.selected", Color.gray);
//Set the inactive tab background to black
UIManager.put("TabbedPane.unselectedTabBackground", Color.black);
//Remove borders
UIManager.put("TabbedPane.contentBorderInsets"
, new Insets(0, 0, 0, 0));
setOpaque(true);
setBackground(color);
setForeground(Color.white);
add(new JLabel("Tab content " + String.valueOf(i)));
}
在这部分代码中,执行以下操作:
使用下面的代码块覆盖 UI
panel.setUI(new BasicTabbedPaneUI()
{
//place the code from step 2 here
}
输入该部分的这些属性:
highlight = Color.lightGray;
lightHighlight = Color.white;
shadow = Color.gray;
darkShadow = Color.darkGray;
focus = Color.black;
就像在第一个片段中一样,您也可以更改这些属性。这里有一点 提示:每个选项卡的选项卡标签周围都有一个小虚线框,这标志着焦点。如果 您想隐藏此标记,只需将其颜色设置为与活动选项卡的颜色相匹配, 现在有焦点了。
使用
UIManager
更改以下属性:
UIManager.put("TabbedPane.selected", Color.gray);
UIManager.put("TabbedPane.unselectedTabBackground", Color.black);
这将允许您在程序期间更改活动 和 非活动选项卡背景 运行时。
您正在使用
UIManager
,这是实现您想要的目标的最佳方式UIManager.put("TabbedPane.selectedForeground", Color.xxx)
和
UIManager.put("TabbedPane.unselectedTabForeground", Color.xxx)
不要改变
前景色,前景色保持不变。
UIManager.put("TabbedPane.selected", Color.xxx)
will 更改背景颜色
活动选项卡的 UIManager.put("TabbedPane.unselectedTabBackground")
将
更改inactive选项卡的背景颜色。将这两个代码片段复制并粘贴到您的文件中,然后根据需要进行更改。
我建议您复制顶部的整个源代码并将其粘贴到编译器中,然后先运行它。这样,您将能够看到该程序的作用,并且当您返回正在使用的原始代码时,您将知道将这些代码片段放置在哪里。
希望这有帮助。
如果您遇到问题,请在您的回复中发布 SSCCE,以便我可以看到您遇到问题的地方。
谢谢。
请从 Java 文档中检查 JTabbedPane 的以下方法
http://docs.oracle.com/javase/tutorial/uiswing/components/tabbedpane.html#eg
void setBackgroundAt(int, Color)