gpt4 book ai didi

java - JLabel 中的两个图标?

转载 作者:搜寻专家 更新时间:2023-10-30 21:36:45 25 4
gpt4 key购买 nike

我在 JLabel 中有一个图标,如下所示:

enter image description here

是否可以在颜色图标和文本之间添加另一个图标(例如代表国家的旗帜)?例如,我想在红色图标和 US 之间添加一个描绘美国国旗的图标。谢谢!

最佳答案

是的,在容器标签中使用嵌套的 JLabel 和 BoxLayout:

JLabel container = new JLabel();
container.setLayout(new BoxLayout(container, BoxLayout.X_AXIS));
JLabel icon1Label = new JLabel();
JLabel icon2Label = new JLabel();
icon1Label.setIcon(icon1);
icon2Label.setIcon(icon2);
container.add(icon1Label);
container.add(icon2Label);

关于java - JLabel 中的两个图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7921123/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com