0

我是 Java 和 SWT 的新手。

我创建TableViewer以显示表格数据。

class myTable : TableViewer

我想当我按下按钮打开对话框myTable(如弹出)并从TableViewer.

该对话框应该有两个按钮“确定”和取消。

你知道如何在java中做到这一点吗?我的意思是打开对话框TableViewer

这有标准的小部件吗?

我需要使用哪个组件?

你有什么例子吗?

4

1 回答 1

2

最简单的对话框是一个使用org.eclipse.jface.dialog.Dialog- 像这样:

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;

public class TestDialog extends Dialog
{
  public TestDialog(final Shell parentShell)
  {
    super(parentShell);
  }


  @Override
  protected Control createDialogArea(final Composite parent)
  {
    final Composite body = (Composite)super.createDialogArea(parent);

    final TableViewer viewer = new TableViewer(body, SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL);

    viewer.getTable().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

    // TODO: Set TableViewer content and label providers
    // TODO: Set TableViewer input

    return body;
  }
}

在您的代码中,您可以:

TestDialog dialog = new TestDialog(shell);

dialog.open();   // Displays the dialog in a popup window
于 2014-01-02T15:45:01.460 回答