问题标签 [grid-layout]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
6 回答
40199 浏览

java - 如何去除按钮周围的边框?

我有一个带有 GridLayout 的 JPanel。在网格的每个单元格中,我都有一个按钮。我看到每个按钮都被灰色边框包围。我想删除这些边框。有人知道怎么做吗?

0 投票
3 回答
2579 浏览

java - 如何将 JButton 添加到 GridLayout?

如果我有这样的代码:

0 投票
2 回答
531 浏览

c# - Issue with WPF Grid proportional layout and unused area

I have a grid layout that splits a view into two parts, effectively for two sets of headings and list. I want each list to share the height of the active view evenly so I've used proportional sizing:

In the case where both lists exceed the height available this works just fine. However, if the top list only has 1 or two items, it sizes nicely to the space it needs, however the second list does not use all of the remaining space, it only uses 50% of the original screen size when I'd like it to use whatever's left if the first list doesn't need half.

I could use a Dock Panel and let the last row fill, but in cases where the first list is large I want it limitted proportionally, not a fixed max height.

Does anyone know if the grid supports this, or if there is some combination to acheive this that will work with scrolling if the available size is not sufficient for both lists, ensuring the lists share available space evenly?

0 投票
3 回答
18827 浏览

qt4 - Qt Designer - 如何让小部件跨越列?

我创建了一个简单的表格。我在右下角添加了一个 PushButton,然后在其上方添加了一个 TabWidget。我突出显示了主窗口,并选择了网格布局。PushButton 被拉伸了,所以我在它的左侧添加了一个垫片。

现在,我的 Tab Widget 只占据最左边的列。我也希望它跨越到 Column1 中。我浏览了每个选项并尝试在任何地方单击鼠标右键,但无法让设计师创建跨度。

为了确保我没有遗漏任何内容,我直接修改了 .ui 文件,将 colspan="2" 添加到 Tab Widget 的标签中,使用设计器重新加载它,并且它显示完美。但是,我想尽可能多地使用设计器。

任何想法如何让它跨越?

0 投票
4 回答
5694 浏览

java - 是否可以使 GridLayout 的组件大小不相等?

GirdLayout使一堆大小相等的组件。这意味着最大尺寸的组件将定义所有组件的尺寸。是否可以根据每个组件的内部组件来制作每个组件的大小?

编辑:如果不可能,我怎么能获得与 a 相同的效果,GridLayout但每个组件的大小取决于它们的内部组件。

0 投票
1 回答
925 浏览

grid-layout - 如何在 JUNG 中创建网格布局

我正在尝试使用 JUNG 创建一个网格布局图。我找不到如何使用 JUNG 来创建图表

提前致谢

0 投票
2 回答
7755 浏览

asp.net - 这是做什么的:MS_POSITIONING="GridLayout"

该字符串出现在一些旧的 asp.net webform 应用程序中的所有 <body> 标记上。

0 投票
4 回答
5962 浏览

java - 带有 JPanel 的 GridLayout 中的组件错误地填充了网格

我试图阻止 JPanel 中的 GridLayout 完全填充单元格并忽略组件的任何 setSize

我正在使用此代码:

每个组件都在填充 gris 单元格,而不是指定的大小。

谢谢

0 投票
1 回答
8761 浏览

java - 如何在 JAVA 上相应地操作 GridLayout 设置?

我有一个 setLayout(new GridLayout(5,5,3,3));

5 行 5 列。在第一行我想要一个大行。您知道如何在 excel 中合并单元格。所以我只想合并第一行的 5 列。我将 JLabel 放在第一行,这非常烦人,我需要为每个网格单元设置多个 JLabel 并确保间距效果很好。

有没有办法在 GridLayout 上做到这一点?或者我严格地坚持 5 行和 5 列?

0 投票
1 回答
1528 浏览

java - Java:GridLayout添加到特定单元格

如何向特定单元格添加数据例如([*] 表示单元格): [JButton1] [JButton2] [] [] [JButton3]

或者有没有更好的解决方案,而不是使用空布局来获得类似的结果 - 给出一个差距。