- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图将一些 JPanel
放在另一个之上,完全重叠。我使用 JLayeredPane 使它们处于不同的“深度”,这样我就可以更改深度和不透明度以查看某个面板“位于”另一个面板的“下方”。这是我做的一个小测试,它运行正常:
public class LayeredCardPanel extends JPanel {
private static final String BLUE_PANEL = "blue ";
private static final String RED_PANEL = "red ";
private static final String GREEN_PANEL = "green";
private String[] panelNames = { BLUE_PANEL, RED_PANEL, GREEN_PANEL };
private Color[] panelColors = { Color.BLUE, Color.RED, Color.GREEN };
private List<JPanel> panels = new ArrayList<>();
private final int TOP_POSITION = 30;
private static final int PANELS_FIRST_POS = 10;
private JLayeredPane layeredPane;
public LayeredCardPanel() {
setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
add(createControlPanel());
layeredPane = new JLayeredPane();
////////////////////////////////////////////////////////////////
//setting layout here results in all grey, non functioning panel.
//layeredPane.setLayout(new CardLayout(0, 0));
//////////////////////////////////////////////////////////////
add(layeredPane);
//adding 3 panel
for (int i = 0; i < panelNames.length; i++) {
JPanel panel = new JPanel();
panel.setBackground(panelColors[i]);
layeredPane.add(panel);
layeredPane.setLayer(panel, PANELS_FIRST_POS + i);
panels.add(panel);
}
////////////////////////////////////////////////////////////
//setting the card here, after adding panels, works fine
layeredPane.setLayout(new CardLayout(0, 0));
//////////////////////////////////////////////////////////
}
正如您在//////注释行之间所看到的,只有当我将 CardLayout
设置为 JLayeredPane
after< 时,此测试才能正常工作。/strong> 我将 JPanel
添加到其中。在我看来,JPanel
是使用默认布局管理器添加到 JLayeredPane
中的。布局(设置和更改边界以填充 JLayeredPane
)由稍后应用的 CardLayout
完成。
我的问题是:虽然这按照我的需要工作,但该解决方案(使用一个布局管理器添加,然后替换它以实现我想要的布局)看起来并不是一个优雅的解决方案。我正在寻找更好的方法来做到这一点。
这是整个 SSCE:
public class LayeredCardPanel extends JPanel {
private static final String BLUE_PANEL = "blue ";
private static final String RED_PANEL = "red ";
private static final String GREEN_PANEL = "green";
private String[] panelNames = { BLUE_PANEL, RED_PANEL, GREEN_PANEL };
private Color[] panelColors = { Color.BLUE, Color.RED, Color.GREEN };
private List<JPanel> panels = new ArrayList<>();
private final int TOP_POSITION = 30;
private static final int PANELS_FIRST_POS = 10;
private JLayeredPane layeredPane;
public LayeredCardPanel() {
setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
add(createControlPanel());
layeredPane = new JLayeredPane();
add(layeredPane);
//add 3 panel
for (int i = 0; i < panelNames.length; i++) {
JPanel panel = new JPanel();
panel.setBackground(panelColors[i]);
layeredPane.add(panel);
layeredPane.setLayer(panel, PANELS_FIRST_POS + i);
panels.add(panel);
}
layeredPane.setLayout(new CardLayout());
}
private JPanel createControlPanel() {
ActionListener aListener = new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource() instanceof JButton ) {
moveToTop(((JButton) e.getSource()).getActionCommand() );
}
}
};
JPanel controls = new JPanel();
controls.setLayout(new BoxLayout(controls, BoxLayout.Y_AXIS));
JButton blueViewBtn = new JButton(BLUE_PANEL);
blueViewBtn.setActionCommand(BLUE_PANEL);
blueViewBtn.addActionListener(aListener);
controls.add(blueViewBtn);
JButton redViewBtn = new JButton(RED_PANEL);
redViewBtn.setActionCommand(RED_PANEL);
redViewBtn.addActionListener(aListener);
controls.add(redViewBtn);
JButton greenViewBtn = new JButton(GREEN_PANEL);
greenViewBtn.setActionCommand(GREEN_PANEL);
greenViewBtn.addActionListener(aListener);
controls.add(greenViewBtn);
return controls;
}
private void moveToTop(String panelName) {
for(int i = 0; i < panelNames.length; i++) {
if(panelNames[i].equals(panelName)) {
layeredPane.setLayer(panels.get(i),TOP_POSITION);
} else {
layeredPane.setLayer(panels.get(i), PANELS_FIRST_POS + i);
}
}
}
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
JFrame frame = new JFrame("Layered Card Panel Simulation");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JComponent newContentPane = new LayeredCardPanel();
newContentPane.setPreferredSize(new Dimension(300,100));
frame.setContentPane(newContentPane);
frame.pack();
frame.setVisible(true);
}
});
}
}
最佳答案
基本上您没有使用 CardLayout。即使您没有 setLayout(...)
语句,您的代码也可以工作。
当您使用 CardLayout 时:
编辑:
当您在将面板添加到分层 Pane 之后设置 CardLayout 时,它们不会由 CardLayout 处理。结果,所有面板都保持可见。显然,所发生的一切是 CardLayout 将设置每个面板的大小以填充可用空间,以便绘画看起来可以正常工作。
当我修改您的 SSCCE 以在添加面板之前设置 CardLayout 时,CardLayout 会管理面板。因此,CardLayout 在除添加的第一个面板(在 SSCCE 中为蓝色面板)之外的所有面板上调用 setVisible(false)。因此,即使您尝试将不同的面板移到前面,您也只会看到蓝色面板。
通过对 SSCCE 进行以下更改可以轻松验证这一点:
layeredPane.setLayer(panel, PANELS_FIRST_POS + i);
System.out.println(panel.isVisible());
所以,是的,使用 CardLayout 确实是一种 hack,并且不是 CardLayout 的预期使用方式或 JLayeredPane 的预期使用方式。
JLayeredPane 实际上是与空布局一起使用,这意味着您负责设置每个组件的大小。为了获得更好的解决方案,我建议您需要将 ComponentListener 添加到分层 Pane 。然后您应该处理 componentResized(...)
事件。然后,您将迭代添加到分层 Pane 中的所有组件,并将每个组件的大小设置为等于分层 Pane 的大小。
关于Java Swing : combine effects of CardLayout and JLayeredPane,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35769412/
我想使用 Haskell 的 parsec 库来实现这个语法规则: ((a | b | c)* (a | b))? 这是一个接受可选(即可能为空)字符串的解析器规则。如果它接受的字符串不为空,则可以通
Python 的 itertools.combinations() 创建的结果是数字的组合。例如: a = [7, 5, 5, 4] b = list(itertools.combinations(a
I found a good script for the permutation of lists, combining and not combining list position on
我正在使用 Beam 管道计算流式数据的电话号码频率。我使用的滑动窗口每 5 分钟重复一次,总周期为 15 分钟,因此正如预期的那样,对于某些输入,当输入落在多个窗口中时,我会得到多个输出。 计算出现
这个问题已经有答案了: Pandas Merging 101 (8 个回答) 已关闭 3 年前。 我有两个数据帧,我想对其执行外连接。两个数据框共享一个公共(public)索引名称以及多个也共享相同名
我在谷歌上搜索了很多天这个问题,但一无所获。我需要做一个 SELECT,DUPLICATE 和 DUPLICATE 和 DUPLICATE 取决于用户。之后,我需要将每个选项的值组合到我选择的一个选择
这个问题在这里已经有了答案: Java 8 Streams: multiple filters vs. complex condition (4 个答案) 关闭 4 年前。 需要过滤所有适合其领域某
运行 cv2.getRectSubPix(img, (5,5), (0,0)) 抛出错误: OpenCV Error: Unsupported format or combination of for
没有重复的组合看起来像这样,当可供选择的元素数 (n) 为 5 且选择的元素数 (r) 为 3 时: 0 1 2 0 1 3 0 1 4 0 2 3 0 2 4 0 3 4 1 2 3 1 2 4 1
我在学校的数学一直不太好,我意识到我实际上需要与 pow(base, exponent) 函数相反的函数,该函数对某个数字进行乘方运算,例如 2 ^ 4 = 16 搜索答案我发现对数 log() 应该
我确信这很简单,但我很难找到一种方法来做到这一点。基本上,如果我有一个包含 P 列和 V^P 行的数组,我如何填写所有组合,即基本上所有可能的数字以 P 数字的 V 为基数。例如,对于 P=3 和 V
我想知道一种可能的算法来计算所有可能的组合,没有重复,从 length=1 开始,直到 length=N 的 N 个元素。 例子: 元素:1、2、3。 输出: 1 2 3 12 13 23 123 最
使用三种不同颜色的颜料可以用多少种不同的方式来绘制立方体? 最佳答案 如果您以唯一可能的有趣方式解释它,那么这是一个比 3^6 更难的问题:有多少种不同的(即对称的)方法来为立方体着色。这是一篇论文:
我正在尝试解决优化问题,但首先我必须找到 n 个元素的所有可能组合的数量,但要考虑一些冲突。一个可能的例子是: 元素:{1,2,3,4}冲突:{1,2},{3,4} 术语“冲突”是指属于同一冲突集合的
Cleave 是一个非常有用的组合器,可以最大限度地减少代码重复。假设我要分类 Abundant, Perfect, Deficient numbers : USING: arrays assocs
有没有办法让 @Published 变量只在新值与旧值不同时才发布其值? 现在如果我们有 @Published var test: Bool = false 我们做到了 test = false te
有一个数组 [1, 2, ..., m] ,并且有一个整数 n . 如 m=2和 n=3 ,我想获得 [1, 1, 1] [1, 1, 2] [1, 2, 1] [1, 2, 2] [2, 1, 1]
我在我的应用程序中使用了一个用于日志记录页面的表单,并且在页脚上有一个绑定(bind)来显示任何错误,如下所示: 内容 View .Swift : Form { Section(footer: Tex
HTML first second third SCSS $statistics: ("first", "second", "third"); :root { --first: r
我有一个 HTTP 请求发布者,当返回 401 错误时,我想停止执行并显示我的登录屏幕。 这是我的代码的一部分: cancellable = fetcher.hello(helloRequest: H
我是一名优秀的程序员,十分优秀!