gpt4 book ai didi

java - 为什么创建 GridBagConstraints 的内联版本不起作用?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:22:20 27 4
gpt4 key购买 nike

为了使一些 Swing 代码更具可读性,我创建了一个 InlineGridBagConstraints 类,如下所示:

public class InlineGridBagConstraints extends GridBagConstraints {

public InlineGridBagConstraints gridx(int x) {
gridx = x;
return this;
}

public InlineGridBagConstraints gridy(int y) {
gridy = y;
return this;
}

public InlineGridBagConstraints gridheight(int h) {
gridheight = h;
return this;
}

public InlineGridBagConstraints gridwidth(int w) {
gridwidth = w;
return this;
}

// .... and so on, for all fields.

}

本意是改这种代码:

GridBagConstraints c = new GridBagConstraints();
c.gridx = 2;
c.gridy = 1;
c.gridwidth = 3;
myJPanel.add(myJButton, c);

c.gridx = 3;
c.gridwidth = 2;
myJPanel.add(myOtherJButton, c);

c.gridx = 1;
c.gridy = 5;
c.gridheight = 4;
myJPanel.add(yetAnotherJButton, c);

...用更容易理解和阅读的东西,像这样:

InlineGridBagConstraints c = new InlineGridBagConstraints();
myJPanel.add(myJButton, c.gridx(2).gridy(1).gridwidth(3));
myJPanel.add(myOtherJButton, c.gridx(3).gridy(1).gridwidth(2);
myJPanel.add(yetAnotherJButton, c.gridx(1).gridy(5).gridheight(4);

但是,上面的代码不起作用。当我尝试这样做时,所有组件都占据了 JPanel 中心的同一区域并且彼此重叠。它们在 GridBagLayout 中没有间隔。但是,如果我将较丑陋的版本与常规 GridBagConstraints 一起使用,它会按预期完美运行。

我曾尝试将 InlineGridBagConstraints 类型转换为 GridBagConstraints,我认为这可能是个问题(尽管它不应该是),但这并没有帮助全部。

我已经没有想法了。有谁知道为什么会发生这种情况,或者第一个(标准)和第二个(内联)实现之间的主要区别是什么?

最佳答案

我真的不知道你的 GUIConstants 定义了什么,因为我们没有看到它,但是将 InlineGridBagConstraints 中的 reset() 方法更改为下面的方法,使得您的 UI 看起来可能与您预期的一样:

  public InlineGridBagConstraints reset() {
gridx = 0;
gridy = 0;
gridheight = 1;
gridwidth = 1;
insets = new Insets(5, 5, 5, 5);
fill = GridBagConstraints.BOTH;
anchor = GridBagConstraints.CENTER;
return this;
}

关于java - 为什么创建 GridBagConstraints 的内联版本不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12376809/

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