ElementListSelectionDialog没有元素

时间:2012-08-25 22:57:41

标签: java eclipse dialog swt jface

我正在尝试使用ElementListSelectionDialog。我已经按照示例代码,但无论出于何种原因,对话框显示但没有选项

我的代码:

ElementListSelectionDialog dialog = 
      new ElementListSelectionDialog(shlSpriteCreator, new LabelProvider());
dialog.setMultipleSelection(false);
dialog.setIgnoreCase(true);
dialog.setAllowDuplicates(true);
dialog.setMessage("Select an AI");
dialog.setTitle("What AI to use?");
dialog.setElements(new String[]{"HELLO","GOODBYE"});
if (dialog.open() == Window.OK) {
    aiControllerLocation = (String) dialog.getFirstResult();
}

结果对话框:

Dialog with no options to select

我最初使用了一个类数组,但由于它不起作用,我替换了一个简单的字符串列表,虽然我理解它使用LabelProvider类我应该能够使用任何对象,它将是它由toString()表示显示。

1 个答案:

答案 0 :(得分:2)

此类对话框在Workbench UI下正常工作。要正确运行此对话框,您应该使用示例代码

ElementListSelectionDialog dialog = 
    new ElementListSelectionDialog(PlatformUI.getWorkbench().getDisplay().getActiveShell(), new LabelProvider());