gpt4 book ai didi

java - Eclipse RCP - JFace 对话框不显示按钮

转载 作者:行者123 更新时间:2023-11-30 08:13:00 26 4
gpt4 key购买 nike

我正在尝试创建一个自定义对话框,其中包含一个 TableViewer。它作为测试/预览看起来不错,但当我实际运行我的应用程序时,底部的按钮消失了。

从 WindowBuilder 内部运行时的测试/预览如下所示(在底部):

enter image description here

在应用程序中运行时,它看起来像这样:

enter image description here

这是对话框的源代码:

@Override
protected Control createDialogArea(Composite parent) {
Composite container = (Composite) super.createDialogArea(parent);
container.setLayout(new GridLayout(1, false));

Composite composite = new Composite(container, SWT.NONE);
composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
TableColumnLayout tcl_composite = new TableColumnLayout();
composite.setLayout(tcl_composite);

TableViewer tableViewer = new TableViewer(composite, SWT.BORDER | SWT.FULL_SELECTION);
table = tableViewer.getTable();
table.setHeaderVisible(true);
table.setLinesVisible(true);

TableViewerColumn tableViewerColumn = new TableViewerColumn(tableViewer, SWT.NONE);
TableColumn tblclmnNewColumn = tableViewerColumn.getColumn();
tcl_composite.setColumnData(tblclmnNewColumn, new ColumnPixelData(150, true, true));
tblclmnNewColumn.setText("New Column");
table.getShell().setSize(710, 400);
return container;
}

最佳答案

不要在 Shell 上调用 setSize,您将覆盖布局计算的大小并导致按钮位于对话框之外。

要控制表格的大小,请在表格网格数据上设置高度和宽度提示:

GridData data = new GridData(SWT.FILL, SWT.FILL, true, true);
data.widthHint = 710;
data.heightHint = 400;
table.setLayoutData(data);

关于java - Eclipse RCP - JFace 对话框不显示按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30192965/

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