网格布局的负值表示什么

发布于 2024-12-05 12:12:44 字数 222 浏览 2 评论 0原文

我遇到了这段代码,其中网格约束具有负行和列值。它意味着什么?

GridBagConstraints cons = new GridBagConstraints();
cons.gridx = 0;
cons.gridy = -2;
cons.gridwidth = 0;
cons.gridheight = 1;
cons.anchor = 10;
cons.fill = 0;

I came accross this code where Grid constraints are having negative row and column values. What does it signify?

GridBagConstraints cons = new GridBagConstraints();
cons.gridx = 0;
cons.gridy = -2;
cons.gridwidth = 0;
cons.gridheight = 1;
cons.anchor = 10;
cons.fill = 0;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟─花易冷 2024-12-12 12:12:44

gridxgridy 的负值表示相对定位,即组件放置在之前添加的组件的右侧(对于 gridx)或就在组件下方(对于gridy)。

您不应直接使用负值,而应使用 GridBagConstraints.RELATIVE 来代替。

Negative values for gridx and gridy indicate relative positioning, i.e. the component is placed just to the right of the component added before (for gridx) or just below the component (for gridy).

You should not use negative values directly but GridBagConstraints.RELATIVE instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文